body {
    background: #f6f6f4;
}

.holy-wrapper {
    max-width: 1280px;
    margin: auto;
    padding: 40px 20px;
}

.holy-hero {
    background: #dce8ca;
    border-radius: 28px;
    padding: 50px;
    margin-bottom: 30px;
}

.holy-hero h1 {
    font-size: 58px;
    line-height: 1;
    margin-bottom: 20px;
}

.holy-hero p {
    font-size: 20px;
    max-width: 700px;
    line-height: 1.7;
}

.holy-meta {
    display: flex;
    gap: 20px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.holy-filters {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.holy-filters button {
    border: 2px solid #111;
    background: white;
    color: #111;
    border-radius: 999px;
    padding: 12px 26px;
    cursor: pointer;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.3px;
    outline: none;
    box-shadow: 0 2px 0 rgba(17, 17, 17, 0.1);
}

.holy-filters button:hover {
    background: #dce8ca;
    color: #111;
    border-color: #111;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(17, 17, 17, 0.15);
}

.holy-filters button.active {
    background: #111;
    color: #dce8ca;
    border-color: #111;
    transform: translateY(0);
    box-shadow: none;
}

.holy-filters button:active {
    transform: translateY(1px);
}

.holy-grid-wrapper {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 30px;
}

.holy-post-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.holy-featured-card {
    grid-column: span 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    overflow: hidden;
    background: white;
    border-radius: 24px;
    border: 1px solid #e5e5e5;
}

.holy-featured-card a {
    display: contents;
    text-decoration: none;
    color: inherit;
}

.holy-featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.holy-featured-content {
    padding: 40px;
}

.holy-badge {
    display: inline-block;
    background: #dce8ca;
    padding: 6px 12px;
    border-radius: 999px;
    margin-bottom: 20px;
    font-size: 12px;
    text-transform: uppercase;
}

.holy-featured-content h2 {
    font-size: 40px;
    line-height: 1.2;
    margin-bottom: 20px;
}

.holy-featured-content p {
    line-height: 1.8;
    color: #666;
}

.holy-card {
    overflow: hidden;
    background: white;
    border-radius: 24px;
    border: 1px solid #e5e5e5;
}

.holy-card a {
    text-decoration: none;
    color: inherit;
}

.holy-card-image img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    display: block;
}

.holy-card-content {
    padding: 24px;
}

.holy-card-category {
    display: inline-block;
    background: #dce8ca;
    border-radius: 999px;
    padding: 6px 12px;
    margin-bottom: 15px;
    font-size: 12px;
    text-transform: uppercase;
}

.holy-card h3 {
    font-size: 24px;
    line-height: 1.4;
    margin-bottom: 20px;
}

.holy-card-meta {
    color: #777;
    font-size: 14px;
}

.holy-sidebar {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.holy-sidebar-box {
    background: white;
    border-radius: 24px;
    padding: 30px;
    border: 1px solid #e5e5e5;
}

.holy-sidebar-box h4 {
    margin-bottom: 20px;
    font-size: 22px;
}

.holy-sidebar-box ul,
.holy-sidebar-box ol {
    padding: 0;
    margin: 0;
    list-style: none;
}

.holy-sidebar-box li {
    display: flex;
    justify-content: space-between;
    margin-bottom: 18px;
    line-height: 1.6;
}

.holy-sidebar-box ol li {
    display: list-item;
    margin-left: 20px;
}

.holy-sidebar-box a {
    text-decoration: none;
    color: #222;
    transition: .3s;
}

.holy-sidebar-box a:hover {
    color: #555;
    opacity: 0.8;
}

@media(max-width: 1024px) {

    .holy-grid-wrapper {
        grid-template-columns: 1fr;
    }

}

@media(max-width: 767px) {

    .holy-featured-card {
        grid-template-columns: 1fr;
    }

    .holy-post-grid {
        grid-template-columns: 1fr;
    }

    .holy-featured-card {
        grid-column: span 1;
    }

    .holy-hero h1 {
        font-size: 42px;
    }

    .holy-featured-content h2 {
        font-size: 28px;
    }

}
