body {
    background: #f4ecd8;
    color: #222;
    font-family: Georgia, serif;
    max-width: 1200px;
    margin: auto;
    padding: 2rem;
}

h1 {
    text-align: center;
    margin-bottom: 2rem;
}

.catalog-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.essay-card {
 background: #fffdf7;
    border: 2px solid #b89f74;
    border-radius: 8px;

    padding: 20px;

    text-decoration: none;
    color: inherit;

    box-shadow: 4px 4px 0px #d2c2a4;

    transition: all 0.2s ease;
}

.essay-card:hover {
    transform: translate(-3px, -3px);

    box-shadow: 7px 7px 0px #d2c2a4;
}



.card-tag {
    display: inline-block;

    background: #d7c4a3;

    padding: 4px 10px;

    border-radius: 4px;

    font-size: 0.8rem;
    margin-bottom: 10px;
}

.essay-card h2 {
    margin-top: 0;
    margin-bottom: 10px;

    font-size: 1.4rem;
}

.essay-card p {
    line-height: 1.5;
}

.card-footer {
    display: flex;
    justify-content: space-between;

    margin-top: 15px;

    font-size: 0.85rem;

    color: #666;
}

