.home-post{
    position: relative;
    width: 100%;
    background-color: #000;
    border-radius: 12px;
    overflow: hidden;
}

.home-post:hover{
    
}

.home-post .image-section {
    position: relative;
    height: 384px;
    background-size: cover;
    background-position: center;
    transition: scale 0.3s ease;
    cursor: pointer;
    scale:1;
}

.home-post .inner{
    overflow:hidden;
}

.image-section:hover{
    scale:1.2;
}

.home-post .image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, 
        rgba(0, 0, 0, 0.4) 0%, 
        rgba(0, 0, 0, 0.2) 50%, 
        rgba(0, 0, 0, 0.8) 100%);
}

.home-post .digital-tools-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    background-color: #ef4444;
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    z-index: 2;
}

.home-post .share-button {
    position: absolute;
    top: 16px;
    right: 16px;
    background-color: #ef4444;
    color: white;
    border: none;
    padding: 8px;
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.3s ease;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
}

.home-post .share-button:hover {
    background-color: #dc2626;
}

.home-post .content-section {
    background-color: #2e2e2e;
    padding: 24px;
}

.home-post .meta-info {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #9ca3af;
    font-size: 14px;
    margin-bottom: 16px;
}

.home-post .meta-separator {
    color: #FE4F70;;
}

.home-post .comment-count {
    display: flex;
    align-items: center;
    gap: 4px;
}

.home-post .comment-icon {
    width: 16px;
    height: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

.home-post .title {
    color: white;
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 16px;
    line-height: 1.25;
    cursor: pointer;
}

.home-post .title:hover{
    color: #FE4F70;
}

.home-post .description {
    color: #d1d5db;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 24px;
}

.home-post .bottom-navigation {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.home-post .social-icons {
    display: flex;
    align-items: center;
    gap: 12px;
}

.home-post .social-button {
    color: #9ca3af;
    background: none;
    border: none;
    cursor: pointer;
    transition: color 0.3s ease;
    padding: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.home-post .social-button:hover {
    color: white;
}

.home-post .continue-reading {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #9ca3af;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 14px;
    transition: color 0.3s ease;
}

.home-post .continue-reading:hover {
    color: white;
}

 /* Responsividade */
@media (max-width: 768px) {
    .home-post .membership-container {
        max-width: 100%;
        margin: 0 16px;
    }

    .home-post .title {
        font-size: 20px;
    }

    .home-post .content-section {
        padding: 16px;
    }

    .home-post .image-section {
        height: 300px;
    }
}
