/* Posts List Block Styles */

.posts_list_block {
    padding: 60px 0;
}

.posts_list_block .container {
    max-width: 1300px;
    padding: 0 40px;
}

.posts-list-title {
    font-family: "DejaVu Sans";
    margin-bottom: 65px;
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    text-transform: uppercase;
}

/* Post Item Layout - Thumbnail Left, Content Right */
.post-list-item {
    display: flex;
    gap: 72px;
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid #e0e0e0;
}

.post-list-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

/* Thumbnail - Left Side */
.post-list-thumbnail {
    flex-shrink: 0;
    width: 395px;
}

.post-list-thumbnail a {
    display: block;
    position: relative;
    width: 100%;
    padding-bottom: 108%; /* 4:3 aspect ratio */
    overflow: hidden;
    border-radius: 15px;
    background: #f5f5f5;
}

.post-list-thumbnail img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.post-list-thumbnail a:hover img {
    transform: scale(1.05);
}

/* No Thumbnail Placeholder */
.no-thumbnail {
    background: #f5f5f5;
}

.no-thumbnail-placeholder {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Content - Right Side */
.post-list-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding-bottom: 9px;
}

.post-list-item-title {
    margin: 0 0 17px 0;
    font-family: "DejaVu Sans";
    font-size: 1.4rem;
    font-weight: 700;
    line-height: 1.3;
}

.post-list-item-title a {
    color: #063f8f;
    text-decoration: none;
    transition: color 0.3s ease;
}

.post-list-excerpt {
    font-family: "DejaVu Sans";
    margin: 0 0 20px 0;
    font-size: 1.2rem;
    line-height: 1.6;
    color: #666;
    flex: 1;
}

.post-list-excerpt p:last-child {
    margin-bottom: 0;
}

/* Button */
.post-list-button {
    margin-top: auto;
}

.button-read-more {
    color: #FFF;
    text-align: center;
    font-family: "DejaVu Sans";
    font-size: 23px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    display: inline-block;
    padding: 12px 40px;
    width: 100%;
    max-width: 450px;
    border-radius: 500px;
    box-shadow: 0px 0px 24px 5px #FFED00;
    background: linear-gradient(90deg, #EA4C10 0%, #FFCB00 100%);
    text-decoration: none;
    border: 2px solid #FFED00;
}

.button-read-more:hover {
    color: #fff;
    text-decoration: none;
}

/* Tablet */
@media (max-width: 1024px) {
    .post-list-thumbnail {
        width: 250px;
    }

    .posts-list-title {
        font-size: 2rem;
    }

    .post-list-item-title {
        font-size: 1.5rem;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .posts_list_block {
        padding: 40px 0;
    }

    .posts-list-title {
        font-size: 1.75rem;
        margin-bottom: 30px;
    }

    .post-list-item {
        flex-direction: column;
        gap: 20px;
        margin-bottom: 30px;
        padding-bottom: 30px;
    }

    .post-list-thumbnail {
        width: 100%;
    }

    .post-list-item-title {
        font-size: 1.35rem;
        margin-bottom: 12px;
    }

    .post-list-excerpt {
        margin-bottom: 15px;
        font-size: 0.95rem;
    }

    .button-read-more {
        padding: 10px 24px;
        font-size: 0.9rem;
    }
}
