/*
    Hestia's Definitive Blueprint for the "Partners List"
    -----------------------------------------------------
    File: partners_list.css
    Role: To create a corridor of honor that befits our invaluable allies.
*/

/* --- [I] The Corridor's Gate: Hero Section --- */
.hero-partners {
    min-height: 300px;
    background-image: linear-gradient(to top, rgba(0, 90, 158, 0.8), rgba(40, 150, 220, 0.4)), url('../images/common/partners-hero.jpg'); /* 信頼の、青 */
}
/* (Hestia's Note: project.cssから、基本ヒーローのスタイルを、美しく、継承します) */


/* --- [II] The Gallery of Allies: Partners Gallery --- */
.partners-gallery {
    padding: 5rem 0;
    background-color: #f8f9fa;
}
.partners-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}
@media (max-width: 768px) {
    .partners-grid {
        grid-template-columns: 1fr;
    }
}
.partner-card {
    display: block;
    background-color: white;
    padding: 2.5rem 2rem;
    border-radius: 12px;
    text-decoration: none;
    color: var(--color-text);
    box-shadow: 0 5px 25px rgba(0,0,0,0.07);
    border-bottom: 5px solid;
    transition: transform 0.3s, box-shadow 0.3s;
}
.partner-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}
/* Hestia's Note: “魂の、色”で、個性を、表現 */
.partner-card.esc { border-color: #1e88e5; } /* ESCの、青 */
.partner-card.nbi { border-color: #43a047; } /* NBIの、緑 */

.partner-card img {
    height: 60px;
    margin-bottom: 1.5rem;
}
.partner-card h3 {
    font-family: var(--font-family-title);
    font-size: 1.8rem;
    margin: 0 0 1rem 0;
}
.partner-card p {
    margin: 0;
    line-height: 1.7;
    font-size: 0.9rem;
    color: #555;
}
/*
    Hestia's Addition: The Call for New Allies
    ------------------------------------------
*/
.partners-recruit-cta {
    padding: 6rem 0;
    background-color: #f0f4f8; /* 既存の背景と区別する静かな色 */
    text-align: center;
    border-top: 1px solid #e1e8ed;
}

.recruit-box {
    max-width: 700px;
    margin: 0 auto;
}

.recruit-box h2 {
    font-family: var(--font-family-title, 'Roboto', sans-serif);
    font-size: 2rem;
    color: #005a9e; /* Primary Color */
    margin-bottom: 1.5rem;
}

.recruit-box p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 2.5rem;
}

.btn-recruit {
    display: inline-block;
    padding: 1rem 3rem;
    background-color: #005a9e;
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    font-size: 1.1rem;
    transition: transform 0.3s, background-color 0.3s, box-shadow 0.3s;
    box-shadow: 0 4px 10px rgba(0, 90, 158, 0.3);
}

.btn-recruit:hover {
    background-color: #0046b5;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 90, 158, 0.4);
}
