* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    border: none;
    font-family: 'Inter';
    font-style: normal;
    scroll-behavior: smooth;
}

.blog-container {
    max-width: 870px;
    padding: 0 12px;
    margin: 0 auto;
}

.h1 {
    margin-bottom: 25px;
    font-weight: 600;
    font-size: 42px;
    line-height: 150%;
    color: #3B2F2F;
}

.h2 {
    margin-bottom: 25px;
    font-weight: 600;
    font-size: 32px;
    line-height: 150%;
    color: #3B2F2F;
}

.h3 {
    margin-bottom: 25px;
    font-weight: 600;
    font-size: 26px;
    line-height: 150%;
    color: #3B2F2F;
}

.h4 {
    margin-bottom: 10px;
    font-weight: 600;
    font-size: 22px;
    line-height: 150%;
    color: #3B2F2F;
}

.text {
    margin-bottom: 25px;
    font-size: 17px;
    line-height: 175%;
    color: #4e3e3e;
    text-align: justify;
}

.italic {
    font-style: italic;
    color: #4e3e3e;
    font-weight: 600;
    font-size: 16px;
    text-align: center;
    margin-bottom: 25px;
}

.mb5 {
    margin-bottom: 5px;
}

.navigation-logo {
    display: block;
}

.navigation-logo img {
    display: block;
    margin: 45px auto 50px auto;
    max-height: 60px;
}

.title {
    text-align: center;
    max-width: 660px;
    margin-left: auto;
    margin-right: auto;
}

.description {
    text-align: center;
    font-size: 18px;
    line-height: 165%;
    max-width: 752px;
    margin: 0 auto 67px auto;
}

.cards {
    margin-bottom: 163px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 26px;
}

.card {
    cursor: pointer;
    display: block;
    position: relative;
    margin-bottom: 5px;
    overflow: hidden;
    max-width: 410px;
    border: 1px solid #E8E8EA;
    border-radius: 8px; 
}

.card-link,
.card-link:visited,
.card-link:active,
.card-link:hover {
    color: inherit;
    text-decoration: none;
}

.card-shadow {
    position: absolute;
    width: 100%;
    height: 137px;
    left: 0px;
    top: 0px;
    background: linear-gradient(180.15deg, rgba(34, 34, 34, 0.33) 0.13%, rgba(0, 0, 0, 0) 99.87%);
}

.card-content {
    padding: 0 29px 29px 29px;
}

.card-img {
    height: 375px;
    max-height: 375px;
    width: 100%;
    object-fit: cover;
    margin-bottom: 21px;
}

.card-title {
    font-size: 24px;
    margin-bottom: 20px;
}

.card:hover .card-title {
    color: #A67B5B;
    text-decoration: none;
    transition: all 0.2s;
}

.card-description {
    margin-bottom: 36px;
    line-height: 165%;
}

.card-date {
    font-style: italic;
    margin-bottom: 0;
    font-weight: 500;
    color: #3B2F2F;
    font-size: 16px;
}

.load-more {
    display: block;
    margin: 150px auto 0 auto;
    cursor: pointer;
    width: 210px;
    height: 60px;
    background: #A67B5B;
    border-radius: 6px;
    font-size: 18px;
    color: #FFFFFF;
    transition: all 0.2s;
    text-align: center;
}

.load-more:hover {
    background-color: #4B3621;
    transition: all 0.2s;
}

.more {
    min-width: 100%;
}

.pagination {
    position: absolute;
    left: -9999px;
    top: auto;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 16px;
    line-height: 17px;
    letter-spacing: 0.025em;
    color: #6D6D6D;
}

.footer {
    border-top: 1px solid #D8D8D8;
    padding: 35px 0;
}

.footer .blog-container {
    display: flex;
    justify-content: space-between;
}

.footer-logo strong {
    font-weight: 700;
}

.legal-links a {
    text-decoration: none;
    font-weight: 400;
    font-size: 16px;
    color: #3B3C4A;
}

.legal-links span {
    color: #E8E8EA;
}

@media screen and (max-width: 820px) {
    .title {
        font-size: 32px;
    }

    .load-more {
        margin-top: 60px;
    }

    .cards {
        margin-bottom: 60px;
    }

    .footer .blog-container {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
}

@media screen and (max-width: 600px) {
    .title {
        font-size: 28px;
    }
}