/* Priority: 70 */

.posts-container .project-main-selected-card {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: var(--gapX8, 32px);
    width: 100%;
    padding: var(--gapX8, 32px) 0;
    border-top: 1px solid var(--primaryOpacity300, rgba(10, 39, 83, 0.25));
    color: var(--contentPrimaryColor, #0a2753);
    text-decoration: none;
    box-sizing: border-box;
}

.posts-container:has(.project-main-selected-card){
    row-gap: unset;
    border-bottom: 1px solid var(--primaryOpacity300);
    margin-bottom: 2px;
}

.posts-container.list .article-item.project-main-selected-card {
    flex-direction: row;
    gap: var(--gapX8, 32px);
}

.posts-container .project-main-selected-card:hover {
    color: var(--contentPrimaryColor, #0a2753);
}

.project-main-selected-card__content {
    display: flex;
    flex: 1 1 auto;
    align-self: stretch;
    justify-content: space-between;
    min-width: 0;
}

.project-main-selected-card__body {
    display: flex;
    flex: 0 1 563px;
    min-height: 452px;
    flex-direction: column;
    justify-content: space-between;
    min-width: 0;
}

.project-main-selected-card__copy {
    display: flex;
    flex-direction: column;
    gap: var(--gapX8, 32px);
}

.project-main-selected-card__title,
.project-main-selected-card__lead,
.project-main-selected-card__meta {
    display: block;
}

.project-main-selected-card__title p,
.project-main-selected-card__lead p,
.project-main-selected-card__meta p {
    display: block;
}

.project-main-selected-card__title {
    max-width: 563px;
}

.project-main-selected-card__lead {
    max-width: 563px;
}

.project-main-selected-card__meta {
    max-width: 333px;
}

.project-main-selected-card__dot {
    flex: 0 0 12px;
    width: 12px;
    height: 12px;
    border: 1px solid currentColor;
    border-radius: 50%;
    box-sizing: border-box;
}

.project-main-selected-card__media {
    display: block;
    flex: 0 0 679px;
    width: 679px;
    height: 452.667px;
    overflow: hidden;
    background: var(--blackOpacity50, rgba(29, 29, 27, 0.04));
}

.posts-container.list .article-item.project-main-selected-card .project-main-selected-card__media {
    width: 679px;
    height: 452.667px;
}

.project-main-selected-card__image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 1199.98px) {
    .posts-container .project-main-selected-card {
        gap: var(--gapX6, 24px);
    }

    .posts-container.list .article-item.project-main-selected-card {
        gap: var(--gapX6, 24px);
    }

    .project-main-selected-card__media {
        flex-basis: 50%;
        width: 50%;
        height: auto;
        aspect-ratio: 679 / 452.667;
    }

    .posts-container.list .article-item.project-main-selected-card .project-main-selected-card__media {
        flex-basis: 50%;
        width: 50%;
        height: auto;
        aspect-ratio: 679 / 452.667;
    }

    .project-main-selected-card__body {
        min-height: auto;
        gap: var(--gapX10, 40px);
    }
}

@media (max-width: 767.98px) {
    .posts-container .project-main-selected-card {
        flex-direction: column-reverse;
        gap: var(--gapX5, 20px);
        padding: var(--gapX5, 20px) 0;
    }

    .posts-container.list .article-item.project-main-selected-card {
        flex-direction: column-reverse;
        gap: var(--gapX5, 20px);
    }

    .project-main-selected-card__content {
        width: 100%;
        gap: var(--gapX4, 16px);
    }

    .project-main-selected-card__body {
        flex-basis: auto;
        gap: var(--gapX8, 32px);
    }

    .project-main-selected-card__copy {
        gap: var(--gapX4, 16px);
    }

    .project-main-selected-card__media {
        flex-basis: auto;
        width: 100%;
    }

    .posts-container.list .article-item.project-main-selected-card .project-main-selected-card__media {
        flex-basis: auto;
        width: 100%;
        height: auto;
    }
}
