/* Summaries Specific Styles */
:root {
    --primary: #D97706;
    --dark-card: #161616;
    --dark-bg: #0F0F0F;
}

.summary-header {
    padding: 140px 0 60px;
    text-align: center;
    background: linear-gradient(180deg, rgba(217, 119, 6, 0.05) 0%, transparent 100%);
}

.summary-card {
    background: var(--dark-card);
    border-radius: 25px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: 0.3s;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.summary-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary);
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

.summary-thumb {
    height: 250px;
    background: #222;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.summary-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.pdf-icon-overlay {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #ff4747;
    color: #fff;
    padding: 5px 12px;
    border-radius: 10px;
    font-weight: 800;
    font-size: 0.8rem;
}

.summary-body {
    padding: 25px;
    flex-grow: 1;
}

.summary-tag {
    color: var(--primary);
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 10px;
    display: block;
}

.summary-title {
    font-size: 1.2rem;
    font-weight: 800;
    margin-bottom: 15px;
    line-height: 1.4;
}

.summary-meta {
    display: flex;
    gap: 15px;
    color: #A3A3A3;
    font-size: 0.85rem;
    margin-bottom: 20px;
}

.summary-btn-p {
    background: var(--primary);
    color: #000;
    width: 100%;
    padding: 12px;
    border-radius: 14px;
    font-weight: 800;
    text-align: center;
    text-decoration: none;
    display: block;
    transition: 0.3s;
    border: none;
}

.summary-btn-p:hover {
    background: #B45309;
    transform: scale(1.02);
    box-shadow: 0 5px 15px rgba(217, 119, 6, 0.2);
}
