.fragment-title {
    font-family: 'Wulkan Display', serif;
    color: #c19c93;
}

.fragment-title::after {
    content: "";
    display: block;
    width: 60px;
    height: 2px;
    margin-top: 14px;
    background-color: #c19c93;
}

.fragment-subtitle {
    margin: 20px 0 30px 0;
    padding-left: 20px;
    color: var(--dark-grey-color);
    font-size: 0.9rem;
}

.fragment-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding: 20px;
}

.fragment-card {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background-color: #fdfdfb;
    border: 1px solid #e3e2dd;
    border-radius: 6px;
    padding: 24px;
}

.fragment-date {
    display: flex;
    flex-direction: column;
    flex-shrink: 0;
    width: 60px;
}

.fragment-date-day {
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1;
    color: #882f1c;
}

.fragment-date-month {
    margin-top: 6px;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    color: #1c1c1c;
}

.fragment-date-year {
    font-size: 0.75rem;
    color: var(--light-grey-color);
}

.fragment-divider {
    flex-shrink: 0;
    align-self: stretch;
    width: 1px;
    background-color: #e3e2dd;
}

.fragment-image {
    flex-shrink: 0;
    width: 110px;
    height: 110px;
    object-fit: cover;
    border-radius: 4px;
}

.fragment-body {
    min-width: 0;
}

.fragment-heading {
    margin: 0 0 10px 0;
    font-size: 0.95rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #882f1c;
}

.fragment-text {
    font-size: 0.85rem;
    font-weight: 300;
    line-height: 1.5rem;
    color: #1c1c1c;
}

.fragment-text p:first-child {
    margin-top: 0;
}

.fragment-text p:last-child {
    margin-bottom: 0;
}

.fragment-author {
    margin: 18px 0 0 0;
    font-size: 0.8rem;
    font-weight: 400;
    color: var(--dark-grey-color);
    line-height: 1.4;
}

@media (max-width: 699px) {
    .fragment-card {
        flex-wrap: wrap;
    }

    .fragment-divider {
        display: none;
    }

    .fragment-image {
        width: 100%;
        height: 160px;
    }

    .fragment-body {
        width: 100%;
    }
}

@media (min-width: 1050px) {
    .fragment-subtitle {
        padding-left: 40px;
        font-size: 1rem;
    }

    .fragment-list {
        padding: 0;
        gap: 30px;
    }

    .fragment-card {
        gap: 30px;
        padding: 34px;
    }

    .fragment-image {
        width: 140px;
        height: 140px;
    }

    .fragment-heading {
        font-size: 1.1rem;
    }

    .fragment-text {
        font-size: 0.9rem;
        line-height: 1.6rem;
    }
}
