.hidden-content {
    display: none;
}

.blurred-content {
    position: relative;
    filter: blur(8px); /* Apply blur */
    max-height: 200px;
    overflow: hidden;
    transition: filter 0.1s ease; /* Smooth transition */
}

.read-more-container {
    background-color: #116BBF;
    width: 200px;
    text-transform: uppercase;
    margin: auto;
    text-align: center;
    border-radius: 7px;
    color: #fff;
    padding: 0.25rem 0.5rem;
    margin-top: 2rem;
    border: 3px solid #116bbf96;
	cursor: pointer;
}

.read-more-btn:hover {
    background-color: #0e59a1;
}