/* Biography section */
.bio-content {
    display: grid;
    grid-template-columns: minmax(300px, 1fr) 2fr;
    gap: var(--spacing-xl);
    align-items: start;
    padding-top: 60px; /* Moved padding to parent */
}

.bio-image {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.bio-text {
    max-width: 800px;
}

.bio-text p {
    margin-bottom: var(--spacing-md);
    line-height: 1.8;
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: var(--text-shadow);
}

.bio-text p:last-child {
    margin-bottom: 0;
}

/* Style for language-specific bio sections */
.bio-section {
    margin-bottom: var(--spacing-md); /* Add space below each section */
}

.bio-section:last-child {
    margin-bottom: 0;
}

/* Style for the separator */
.bio-separator {
    border: none;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.2);
    margin: var(--spacing-lg) 0; /* Space above and below the separator */
}

/* Press section - Grid layout */
.press-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: var(--spacing-lg);
}

.press-item {
    background: rgba(20, 20, 20, 0.4); /* Slightly different background */
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%; /* Ensure items in a row have same height */
}

.press-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.press-link {
    display: flex; /* Use flexbox for layout */
    align-items: flex-start; /* Align items to the top */
    padding: var(--spacing-md);
    color: var(--primary-color);
    text-decoration: none;
}

.press-link:hover {
   /* No specific hover effect on link, item hover is enough */
}

.press-logo {
    width: 60px; /* Fixed logo width */
    height: 60px; /* Fixed logo height */
    min-width: 60px; /* Ensure space even if image fails */
    min-height: 60px; /* Ensure space even if image fails */
    /* background-color: rgba(50, 50, 50, 0.5); */ /* Remove placeholder background */
    object-fit: contain; /* Scale logo nicely */
    margin-right: var(--spacing-md);
    flex-shrink: 0; /* Prevent logo from shrinking */
    /* filter: grayscale(80%) brightness(1.5); */ /* Remove default filter */
    /* opacity: 0.7; */ /* Remove default opacity */
    transition: filter 0.3s, opacity 0.3s;
}

.press-item:hover .press-logo {
    filter: grayscale(0%) brightness(1); /* Keep hover effect */
    opacity: 1; /* Keep hover effect */
}

.press-details {
    display: flex;
    flex-direction: column;
    min-width: 0; /* Allow flex item to shrink and wrap content */
}

.press-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: var(--spacing-xs);
    line-height: 1.4;
    color: var(--primary-color);
    text-shadow: var(--heading-shadow);
    overflow-wrap: break-word; /* Ensure long titles wrap */
}

.press-source {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: var(--spacing-sm);
    text-shadow: var(--text-shadow);
    line-height: 1.6;
    font-style: italic;
    text-shadow: var(--text-shadow);
    margin-top: auto; /* Push quote down if space allows */
    overflow-wrap: break-word; /* Ensure long quotes wrap */
}

.press-quote {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    font-style: italic;
    text-shadow: var(--text-shadow);
    /* margin-top: auto; */ /* Remove this to simplify layout */
    overflow-wrap: break-word; /* Ensure long quotes wrap */
}

/* Style for the extra link (e.g., YouTube link) */
.press-extra-link {
    margin-top: var(--spacing-sm); /* Add space above the extra link */
}

.press-extra-link a {
    font-size: 0.85rem; /* Smaller font size */
    color: #bbbbbb; /* Grey color */
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: color 0.2s ease;
}

.press-extra-link a:hover {
    color: #ffffff; /* White on hover */
}

.press-extra-link a i {
    font-size: 1.2rem; /* Adjust icon size */
    margin-left: 4px; /* Space before icon */
    vertical-align: middle;
}

/* Contact section styling */
.contact-methods {
    display: flex;
    flex-direction: column; /* Stack items vertically */
    gap: var(--spacing-md); /* Space between contact methods */
}

.contact-item {
    display: flex;
    align-items: center; /* Align icon and text vertically */
    gap: var(--spacing-sm);
}

.contact-icon {
    font-size: 1.8rem; /* Adjust icon size */
    color: rgba(255, 255, 255, 0.7);
    width: 30px; /* Ensure consistent width for alignment */
    text-align: center;
}

.contact-details {
    display: flex;
    flex-direction: column; /* Stack label and value */
}

.contact-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 2px;
    text-shadow: var(--text-shadow);
}

.contact-value,
.contact-value a {
    font-size: 1.1rem;
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.2s ease;
    text-shadow: var(--text-shadow);
}

.contact-value a:hover {
    color: #bbbbbb;
}

/* Responsive design */
@media (max-width: 1024px) {
    .bio-content {
        grid-template-columns: minmax(250px, 1fr) 1.5fr;
        gap: var(--spacing-lg);
    }
}

@media (max-width: 768px) {
    .bio-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }

    .bio-image {
        max-width: 300px;
        margin: 0 auto var(--spacing-lg);
    }

    .bio-text p {
        font-size: 1rem;
        line-height: 1.7;
    }

    .press-grid {
        /* grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); */
        /* gap: var(--spacing-md); */
    }

    .press-item {
        /* padding: var(--spacing-sm); */
    }
} 