/* =====================================================
   NOMINEE PROFILE
===================================================== */
.nominee-page {
    background: #f4f4f4;
}
/* =====================================================
   HERO
===================================================== */
.nominee-profile-hero {
    padding: 120px 0;
    background: #262626;
    color: #ffffff;
}
.nominee-profile-grid {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    align-items: center;
    gap: 100px;
}
/* =====================================================
   IMAGE
===================================================== */
.nominee-profile-image {
    height: 620px;
    overflow: hidden;
    background: #3a3a3a;
}
.nominee-profile-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.nominee-profile-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 100%;
    height: 100%;
    background:
        linear-gradient(135deg,
            #333333,
            #505050);
}
.nominee-profile-placeholder span {
    font-family: 'Playfair Display', serif;
    font-size: 150px;
    color: rgba(255,
            255,
            255,
            0.35);
}
.nominee-profile-placeholder small {
    color: #c9a97a;
    font-size: 8px;
    letter-spacing: 0.2em;
}
/* =====================================================
   INFORMATION
===================================================== */
.nominee-back-link {
    display: inline-block;
    margin-bottom: 60px;
    color: rgba(255,
            255,
            255,
            0.5);
    font-size: 10px;
    text-decoration: none;
}
.nominee-back-link:hover {
    color: #c9a97a;
}
.nominee-profile-information h1 {
    max-width: 800px;
    margin-top: 20px;
    font-family: 'Playfair Display', serif;
    font-size: clamp(60px,
            8vw,
            120px);
    font-weight: 500;
    line-height: 0.85;
    letter-spacing: -0.07em;
}
.nominee-profile-company {
    display: block;
    margin-top: 25px;
    color: #c9a97a;
    font-size: 12px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}
.nominee-profile-code {
    margin-top: 45px;
    color: rgba(255,
            255,
            255,
            0.5);
    font-size: 9px;
    letter-spacing: 0.1em;
}
.nominee-profile-code strong {
    margin-left: 10px;
    color: #ffffff;
}
.nominee-profile-votes {
    display: flex;
    align-items: flex-end;
    gap: 15px;
    margin-top: 45px;
}
.nominee-profile-votes strong {
    font-family: 'Playfair Display', serif;
    font-size: 55px;
    font-weight: 500;
    line-height: 1;
}
.nominee-profile-votes span {
    padding-bottom: 5px;
    color: #c9a97a;
    font-size: 8px;
    font-weight: 700;
    letter-spacing: 0.15em;
}
/* =====================================================
   SHARE
===================================================== */
.nominee-share {
    margin-top: 55px;
}
.nominee-share>span {
    display: block;
    margin-bottom: 15px;
    color: rgba(255,
            255,
            255,
            0.4);
    font-size: 8px;
    letter-spacing: 0.15em;
}
.nominee-share-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.nominee-share-buttons a,
.nominee-share-buttons button {
    padding: 11px 16px;
    border: 1px solid rgba(255,
            255,
            255,
            0.25);
    background: transparent;
    color: #ffffff;
    font-family: inherit;
    font-size: 9px;
    text-decoration: none;
    cursor: pointer;
    transition:
        border-color 0.3s ease,
        background 0.3s ease;
}
.nominee-share-buttons a:hover,
.nominee-share-buttons button:hover {
    border-color: #c9a97a;
    background: #c9a97a;
    color: #262626;
}
/* =====================================================
   DETAILS
===================================================== */
.nominee-profile-details {
    padding: 120px 0;
}
.nominee-details-grid {
    display: grid;
    grid-template-columns: 1fr 0.65fr;
    gap: 100px;
}
.nominee-biography h2 {
    max-width: 650px;
    margin-top: 20px;
    font-family: 'Playfair Display', serif;
    font-size: clamp(42px,
            5vw,
            70px);
    font-weight: 500;
    line-height: 0.95;
}
.nominee-bio-text {
    max-width: 650px;
    margin-top: 35px;
    color: #666666;
    font-size: 14px;
    line-height: 2;
}
/* =====================================================
   VOTING CARD
===================================================== */
.nominee-voting-card {
    padding: 40px;
    background: #ffffff;
    box-shadow:
        0 20px 60px rgba(38,
            38,
            38,
            0.08);
}
.nominee-voting-card h3 {
    margin-top: 18px;
    font-family: 'Playfair Display', serif;
    font-size: 35px;
    font-weight: 500;
}
.nominee-voting-card p {
    margin-top: 15px;
    color: #777777;
    font-size: 12px;
    line-height: 1.8;
}
.nominee-vote-button {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    margin-top: 30px;
    padding: 18px 20px;
    border: none;
    background: #262626;
    color: #ffffff;
    font-family: inherit;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.08em;
    cursor: pointer;
    transition:
        background 0.3s ease,
        padding 0.3s ease;
}
.nominee-vote-button:hover {
    padding-left: 28px;
    padding-right: 28px;
    background: #c9a97a;
    color: #262626;
}
.nominee-voting-card>small {
    display: block;
    margin-top: 20px;
    color: #999999;
    font-size: 9px;
    line-height: 1.6;
}
/* =====================================================
   RESPONSIVE
===================================================== */
@media (max-width: 850px) {
    .nominee-profile-grid,
    .nominee-details-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    .nominee-profile-image {
        height: 500px;
    }
}
@media (max-width: 550px) {
    .nominee-profile-hero {
        padding: 90px 0;
    }
    .nominee-profile-image {
        height: 400px;
    }
    .nominee-profile-information h1 {
        font-size: 65px;
    }
    .nominee-profile-details {
        padding: 80px 0;
    }
    .nominee-voting-card {
        padding: 28px;
    }
}
.nominee-share-buttons{
    display:flex;
    gap:10px;
    flex-wrap:wrap;
}
.nominee-share-buttons a,
.nominee-share-buttons button{
    padding:10px 18px;
    border-radius:8px;
    border:none;
    cursor:pointer;
    font-size:14px;
    font-weight:600;
    text-decoration:none;
}
.nominee-share-buttons a{
    background:#111;
    color:white;
}
.nominee-share-buttons button{
    background:#eee;
    color:#111;
}
@media(max-width:600px){
    .nominee-share-buttons{
        flex-direction:column;
    }
    .nominee-share-buttons a,
    .nominee-share-buttons button{
        width:100%;
        text-align:center;
    }
}