.baseFindPost {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 24px;
    background: #fff;
    border-radius: 16px;
}

.baseFindPostTitle {
    color: var(--green);
    font-size: 20px;
    font-weight: 700;
}

.baseFindPostContent {
    display: flex;
    position: relative;
}
.baseFindPostDesktop{
    position: relative;
    z-index: 4;
}
.baseFindPostImage {
    position: absolute;
    right: 0;
    z-index: 1;
    bottom: 0;
    @media (max-width: 1280px) {
        position: absolute;
        bottom: 5px;
        right: 5px;
        opacity: 50%;
    }
}

.textColumn {
    max-width: 240px;
    @media (max-width: 1024px) {
        max-width: none;
    }
}

.baseFindPostText {
    display: flex;
    gap: 20px;
    @media (max-width: 1024px) {
        gap: 40px;
    }
    @media (max-width: 600px) {
        flex-direction: column;
        gap: 0;
    }
}

.text-base--find {
    cursor: pointer;
    font-size: 14px;
    font-weight: 400;
    transition: all 0.3s ease;
}

.text-base--find:hover {
    color: var(--green);
}

.showMoreButton {
    font-size: 14px;
    border-bottom: 1px solid #333;
}

.hideButton {
    color: #2457fe;
    border-bottom: 1px solid #2457fe;
}

.hidden-base {
    display: none;
}


