.answer-recom {
    position: relative;
    padding: 0px;
    margin-top: -24px;
    margin-left: -10px;
    margin-right: -10px;
    min-height: 150px;
    box-sizing: border-box;
    overflow: hidden;
}

/* Responsive adjustments */
@media (min-width: 640px) {
    .answer-recom {
        padding: 0px;
        margin-top: -24px;
        margin-left: -14px;
        margin-right: -10px;
        min-height: 180px;
    }
}

@media (min-width: 768px) {
    .answer-recom {
        min-height: 200px;
    }
}

.answer-recom::before {
    content: "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: block;
    text-shadow: 0 0 8px rgb(0 0 0 / 60%);
    color: transparent;
    z-index: 1;
    line-height: 1.4;
    font-size: 16px;
    word-wrap: break-word;
    overflow: hidden;
    text-overflow: ellipsis;
    padding: 16px;
}

@media (min-width: 768px) {
    .answer-recom::before {
        line-height: 1.6;
    }
}

/* Dark mode support for Lorem ipsum text */
.dark .answer-recom::before {
    text-shadow: 0 0 8px rgb(255 255 255 / 60%);
    color: transparent;
}

.answer-snippet {
    position: relative;
    z-index: 2;
    padding: 12px;
    border-radius: 4px;
    display: inline-block;
    margin-bottom: 8px;
    color: #374151; /* Gray-700 for light mode */
    font-size: 14px;
    line-height: 1.4;
    max-width: 100%;
    word-wrap: break-word;
}

/* Responsive snippet sizing */
@media (min-width: 640px) {
    .answer-snippet {
        padding: 15px;
        font-size: 15px;
        line-height: 1.5;
    }
}

@media (min-width: 768px) {
    .answer-snippet {
        padding: 17px 15px;
        font-size: 16px;
        line-height: 1.6;
    }
}

/* Dark mode support for answer snippet */
.dark .answer-snippet {
    color: #d1d5db; /* Gray-300 for dark mode */
}

.answer-content-blur {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.button-unlock {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(77, 200, 241, 0.29);
    height: 36px;
    border-radius: 18px;
    border: 2px solid #4dc8f1;
    white-space: nowrap;
    text-decoration: none !important;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    padding: 0 16px;
    color: #000;
    cursor: pointer;
    box-shadow: 0 0 60px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    min-width: 80px;
}

/* Responsive button sizing */
@media (min-width: 640px) {
    .button-unlock {
        height: 40px;
        border-radius: 20px;
        font-size: 14px;
        padding: 0 18px;
        min-width: 90px;
    }
}

@media (min-width: 768px) {
    .button-unlock {
        font-size: 15px;
        padding: 0 20px;
        min-width: 100px;
    }
}

.button-unlock:hover {
    background-color: rgba(77, 200, 241, 0.5);
    transform: translate(-50%, -50%) scale(1.05);
}

.button-unlock-text {
    display: flex;
    align-items: center;
    justify-content: center;
}
