.kouhou-latest-widget .card-img-container {
    border-bottom: 1px solid #eee;
}
.kouhou-latest-widget .img-fluid {
    display: block;
    margin: 0 auto;
}
.kouhou-pdf-link {
    display: inline-block;
    color: #0d6efd;
    text-decoration: underline;
    font-weight: bold;
    font-size: 1.1rem;
}
.kouhou-pdf-link:hover {
    color: #0a58ca;
    text-decoration: none;
}
.kouhou-archive-link {
    color: #6c757d;
    text-decoration: none;
}
.kouhou-archive-link:hover {
    color: #495057;
    text-decoration: underline;
}
.kouhou-nendo-list .card-img-top {
    height: 250px;
    object-fit: contain;
    /* background: #f8f9fa; */
    padding: 10px;
}

/* Full-Width PR Section */
.pr-section {
    background-color: #fce4ec; /* Light tulip pink background */
    background-image: linear-gradient(rgba(252, 228, 236, 0.95), rgba(252, 228, 236, 0.95)), 
                      url('https://www.transparenttextures.com/patterns/natural-paper.png');
    padding: 80px 0;
}

.pr-card {
    background: white;
    border-radius: 30px;
    padding: 40px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.08);
    display: flex;
    align-items: center;
    border: none;
}

.pr-cover-col {
    flex: 0 0 300px;
    text-align: center;
}

.pr-info-col {
    padding-left: 50px;
    flex: 1;
}

.pr-badge {
    background-color: var(--tulip-pink);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 15px;
    display: inline-block;
}

.pr-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--hinoki-brown);
    margin-bottom: 20px;
}

.pr-description {
    color: var(--text-dark);
    line-height: 1.8;
    margin-bottom: 30px;
}

.pr-actions {
    display: flex;
    gap: 20px;
    align-items: center;
}
.theme-normal .btn-pr-pdf {
    background-color: var(--hinoki-brown);
    color: white !important; 
    text-decoration: none;
}
.btn-pr-pdf {
    
    padding: 12px 35px;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(141, 110, 99, 0.3);
}
.theme-normal .btn-pr-pdf:hover {
    background-color: #6D4C41;
    color: white;
    text-decoration: none;
}
.btn-pr-pdf:hover {
    
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(141, 110, 99, 0.4);
    color: white;
}
.theme-normal .btn-pr-archive {
    color: var(--hinoki-brown);
}
.btn-pr-archive {
    
    font-weight: 700;
    text-decoration: none;
    border-bottom: 2px solid transparent;
    transition: all 0.3s;
}

.btn-pr-archive:hover {
    border-bottom-color: var(--hinoki-brown);
}

@media (max-width: 991px) {
    .pr-card {
        flex-direction: column;
        padding: 30px;
    }
    .pr-cover-col {
        flex: 0 0 auto;
        margin-bottom: 30px;
    }
    .pr-info-col {
        padding-left: 0;
        text-align: center;
    }
    .pr-actions {
        justify-content: center;
        flex-direction: column;
    }
}