.austen-body {
    background-color: #F8C8DC;
    min-height: 100vh;
}

.austen-wrap {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 24px 60px;
}

.austen-title {
    text-align: center;
    color: white;
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    font-weight: 700;
    margin: 16px 0 8px;
}

.austen-subtitle {
    text-align: center;
    color: white;
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    font-style: italic;
    margin: 0 0 40px;
}

.austen-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.austen-card {
    display: block;
    background-color: white;
    border-radius: 16px;
    padding: 32px 30px;
    text-decoration: none;
    color: #2b1a22;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
    border: 2px solid transparent;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.austen-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 24px rgba(43, 26, 34, 0.22);
    border-color: #2b1a22;
    background: linear-gradient(135deg, #ffffff 0%, #fce7ef 100%);
}

.austen-card-title {
    font-family: 'Playfair Display', serif;
    font-size: 26px;
    font-weight: 700;
    margin: 0 0 10px;
    color: #2b1a22;
}

.austen-card-desc {
    font-family: 'Playfair Display', serif;
    font-size: 17px;
    line-height: 1.5;
    color: #5a3b4a;
    margin: 0;
}

.title-link {
    text-decoration: none;
    color: inherit;
}

@media (max-width: 700px) {
    .austen-grid { grid-template-columns: 1fr; }
    .austen-title { font-size: 34px; }
    .austen-subtitle { font-size: 17px; margin-bottom: 24px; }
    .austen-card { padding: 22px 20px; }
    .austen-card-title { font-size: 22px; }
    .austen-card-desc { font-size: 15px; }
}
