/* ============================================
   LEX MENTE STYLESHEET
   Organized & Optimized - Version 2.0
   Complete Edition
   ============================================ */

/* === ROOT VARIABLES === */
:root {
    --header-blue-gray: rgb(68, 71, 96);
    --headings-gray: rgb(34, 34, 39);
    --burgundy: #642c35;
    --oxblood: #4B1E27;
    --body-text: #212121;
    --highlight: #a63e4b;
    --white: #ffffff;
    --linkedin-blue: #0a66c2;
    --instagram-purple: #e1306c;
    --facebook-blue: #1877f2;
    --light-bg: #f9f9f9;
    --issue-teal: var(--header-blue-gray);
    --issue-brown: var(--burgundy);
}

/* === RESET & BASE STYLES === */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Georgia, serif;
    font-size: 1rem;
    line-height: 1.6;
    color: var(--body-text);
    background-color: var(--white);
    zoom: 0.8;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* === TYPOGRAPHY === */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Merriweather', Georgia, serif;
    color: var(--headings-gray);
}

h1 {
    font-size: 2.5rem;
    font-weight: 900;
    text-align: center;
    margin-bottom: 2.5rem;
    color: var(--oxblood);
}

h2 {
    font-size: 1.75rem;
    font-weight: 700;
    margin: 2.5rem 0 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 3px solid var(--burgundy);
    color: var(--headings-gray);
    text-align: center;
}

h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--oxblood);
}

p {
    margin-bottom: 1.25rem;
}

ul, ol {
    padding-left: 1.5rem;
    margin-bottom: 1rem;
}

li {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    line-height: 1.5;
    list-style-position: inside;
    word-break: break-word;
}

/* === LINKS === */
a {
    color: var(--burgundy);
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    text-decoration: underline;
    color: var(--highlight);
}

a:focus,
button:focus {
    outline: 2px solid var(--highlight);
    outline-offset: 2px;
}

/* === HEADER === */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    border-bottom: 1px solid rgba(100, 44, 53, 0.1);
    background-color: var(--header-blue-gray);
    position: sticky;
    top: 0;
    z-index: 1000;
    height: 90px;
    transition: transform 0.3s ease;
}

/* === LOGO === */
.logo-container {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    position: relative;
    height: 100%;
}

.logo-img {
    height: 75px;
    width: auto;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2));
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.logo-container:hover .logo-img,
.logo-container:focus-within .logo-img {
    transform: perspective(500px) rotateX(10deg) rotateY(10deg) scale(1.05);
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.3));
}

.logo-text {
    font-family: 'Merriweather', Georgia, serif;
    font-size: 2.1rem;
    font-weight: 900;
    color: var(--white);
    text-decoration: none;
    display: flex;
    flex-direction: column;
    line-height: 1;
    position: relative;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-shadow: 0 2px 8px rgba(0,0,0,0.4);
    -webkit-text-stroke: 0.5px rgba(255,255,255,0.4);
    letter-spacing: 0.5px;
}

.logo-text:hover,
.logo-text:focus {
    transform: perspective(100px) translateZ(10px) scale(1.05);
    color: var(--highlight);
    text-shadow: 0 6px 12px rgba(166, 62, 75, 0.5);
    -webkit-text-stroke: 0.5px rgba(255,255,255,0.6);
    outline: none;
}

.logo-text::before {
    content: '';
    position: absolute;
    top: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.logo-text:hover::before,
.logo-text:focus::before {
    opacity: 1;
}

.logo-text::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--highlight), rgba(166, 62, 75, 0.7), transparent);
    transition: width 0.4s ease;
}

.logo-text:hover::after,
.logo-text:focus::after {
    width: 100%;
}

.logo-tagline {
    font-family: 'Merriweather', Georgia, serif;
    font-size: 0.7rem;
    font-weight: 400;
    letter-spacing: 1.8px;
    color: rgba(255,255,255,0.7);
    margin-top: 0.5rem;
    transition: all 0.4s ease;
    text-transform: uppercase;
    text-shadow: 0 1px 2px rgba(0,0,0,0.3);
    display: block;
}

.logo-container:hover .logo-tagline,
.logo-container:focus-within .logo-tagline {
    color: var(--highlight);
    letter-spacing: 2px;
    text-shadow: 0 2px 4px rgba(166, 62, 75, 0.3);
}

/* === NAVIGATION === */
.hamburger {
    display: none;
    cursor: pointer;
    background: none;
    border: none;
    color: var(--white);
    font-size: 1.5rem;
    padding: 0.5rem;
    transition: transform 0.3s ease;
}

.hamburger:hover {
    transform: scale(1.1);
}

.desktop-nav ul {
    display: flex;
    list-style: none;
    gap: 1rem;
    margin: 0;
    padding: 0;
    height: 100%;
    align-items: center;
}

.desktop-nav a {
    font-family: 'Merriweather', Georgia, serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    padding: 0.75rem 1rem;
    letter-spacing: 0.5px;
    text-shadow: 0 1px 2px rgba(0,0,0,0.2);
}

.desktop-nav a:hover,
.desktop-nav a:focus {
    color: var(--highlight);
    transform: translateY(-2px);
    text-shadow: 0 2px 4px rgba(166, 62, 75, 0.3);
    background: rgba(255,255,255,0.05);
    border-radius: 4px;
    outline: none;
    text-decoration: none;
}

.desktop-nav a.active {
    color: var(--highlight);
    font-weight: 900;
    letter-spacing: 0.8px;
}

.desktop-nav a.active::after {
    content: '';
    position: absolute;
    bottom: 0.5rem;
    left: 1rem;
    width: calc(100% - 2rem);
    height: 2px;
    background-color: var(--highlight);
    transform-origin: left center;
    transform: scaleX(1);
    transition: transform 0.3s ease;
}

.desktop-nav a:not(.active)::after {
    content: '';
    position: absolute;
    bottom: 0.5rem;
    left: 1rem;
    width: calc(100% - 2rem);
    height: 1px;
    background-color: rgba(255,255,255,0.2);
    transform-origin: right center;
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.desktop-nav a:hover::after,
.desktop-nav a:focus::after {
    transform-origin: left center;
    transform: scaleX(1);
    background-color: var(--highlight);
}

.mobile-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: var(--header-blue-gray);
    z-index: 1000;
    padding: 1rem 0;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
}

.mobile-nav.active {
    display: block;
}

.mobile-nav ul {
    flex-direction: column;
    gap: 0.5rem;
    padding: 0 2rem;
    list-style: none;
    margin: 0;
}

.mobile-nav a {
    display: block;
    font-family: 'Merriweather', Georgia, serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--white);
    text-decoration: none;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: color 0.3s;
}

.mobile-nav a:last-child {
    border-bottom: none;
}

.mobile-nav a:hover,
.mobile-nav a:focus {
    color: var(--highlight);
    outline: none;
}

.mobile-nav a.active {
    color: var(--highlight);
    font-weight: 900;
}

/* === MAIN CONTAINER === */
.main-container {
    max-width: 1200px;
    margin: 3rem auto;
    padding: 0 1rem;
}

/* === BACK BUTTON === */
.back-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.2rem;
    margin-bottom: 2rem;
    background-color: var(--burgundy);
    color: var(--white);
    text-decoration: none;
    border-radius: 6px;
    font-family: 'Merriweather', Georgia, serif;
    font-size: 0.95rem;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.back-button:hover,
.back-button:focus {
    background-color: var(--highlight);
    transform: translateX(-3px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
    text-decoration: none;
    outline: none;
    color: var(--white);
}

.back-button i {
    font-size: 0.9rem;
}

/* === HERO SECTION === */
.hero {
    padding: 1rem 0.3rem;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.quote {
    font-family: 'Merriweather', Georgia, serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--burgundy);
    margin-bottom: 2rem;
    line-height: 1.4;
    font-style: normal;
}

.quote-attribution {
    font-family: 'Merriweather', Georgia, serif;
    font-style: italic;
    text-align: center;
    color: var(--oxblood);
    margin-top: -1.5rem;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.welcome {
    font-family: Georgia, serif;
    font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height: 1.6;
    font-style: italic;
    text-align: center;
}

/* === BUTTONS === */
.action-buttons {
    text-align: center;
    margin: 1.5rem 0 2.5rem;
}

.buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    padding: 0.8rem 1.5rem;
    font-size: 1rem;
    font-weight: 500;
    background-color: var(--burgundy);
    color: var(--white);
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-top: 0.8rem;
    font-family: 'Merriweather', Georgia, serif;
    border: 2px solid transparent;
}

.btn i {
    margin-right: 0.5rem;
}

.btn:hover,
.btn:focus {
    background-color: var(--highlight);
    outline: none;
    border-color: var(--highlight);
    text-decoration: none;
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}

.btn-primary {
    background-color: var(--burgundy);
    color: var(--white);
}

.btn-secondary {
    background-color: transparent;
    color: var(--burgundy);
    border: 2px solid var(--burgundy);
}

.btn-secondary:hover,
.btn-secondary:focus {
    background-color: var(--highlight);
    color: var(--white);
    border-color: var(--highlight);
}

.btn-table-view {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0.6rem 1.2rem;
    background-color: var(--burgundy);
    color: white;
    font-weight: 600;
    font-size: 0.85rem;
    border-radius: 6px;
    text-decoration: none;
    box-shadow: 0 4px 6px rgba(100, 44, 53, 0.2);
    transition: all 0.3s ease;
}

.btn-table-view:hover,
.btn-table-view:focus {
    background-color: var(--highlight);
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(166, 62, 75, 0.3);
    color: white;
    text-decoration: none;
    outline: none;
}

/* === CONTENT SECTIONS === */
.mission-statement {
    font-style: italic;
    margin: 1.5rem 0;
    background-color: rgba(100, 44, 53, 0.05);
    padding: 1.2rem;
    border-radius: 8px;
    font-size: 1rem;
    line-height: 1.6;
}

.values-container {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin: 1.5rem 0;
}

.value-card {
    flex: 1 1 300px;
    background-color: rgba(100, 44, 53, 0.05);
    padding: 1.2rem;
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.value-card h3 {
    color: var(--burgundy);
    margin-top: 0;
}

.dates-container {
    display: flex;
    gap: 1.5rem;
    margin: 1.5rem 0;
}

.issue-dates {
    flex: 1;
    background-color: rgba(100, 44, 53, 0.05);
    padding: 1.2rem;
    border-radius: 8px;
}

.highlight-box {
    background-color: rgba(100, 44, 53, 0.05);
    padding: 1.2rem;
    border-radius: 8px;
    margin: 1.5rem 0;
}

.submission-email,
.contact-link,
.email-link {
    font-weight: 500;
    color: var(--highlight);
}

.submission-email:hover,
.submission-email:focus,
.contact-link:hover,
.contact-link:focus,
.email-link:hover,
.email-link:focus {
    text-decoration: underline;
    outline: none;
}

/* === CONTACT INFO === */
.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin: 1.5rem 0;
}

.contact-card {
    background-color: rgba(100, 44, 53, 0.05);
    padding: 1.2rem;
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.contact-card h3 {
    font-family: 'Merriweather', Georgia, serif;
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--oxblood);
    margin-top: 0;
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.contact-card h3 i {
    font-size: 1rem;
    width: 1.3rem;
    text-align: center;
}

.contact-card p {
    margin: 0.6rem 0 1.8rem;
    line-height: 1.5;
}

.response-time {
    font-style: italic;
    margin: 2rem 0;
    padding: 0.8rem 1.2rem;
    border-left: 3px solid var(--burgundy);
    background-color: rgba(100, 44, 53, 0.03);
}

/* === LATEST UPDATES === */
.latest-updates .featured-update {
    display: flex;
    justify-content: space-around;
    align-items: flex-start;
    gap: 1.5rem;
    flex-wrap: wrap;
    background-color: rgba(100, 44, 53, 0.05);
    padding: 1.5rem;
    border-radius: 8px;
    max-width: 100%;
    margin: 0 auto;
}

.latest-updates .featured-update .news-image {
    max-width: 48%;
    min-width: 300px;
    flex: 1 1 300px;
}

.news-image {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: 8px;
    margin: 0.8rem 0;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

/* === TEAM SECTIONS === */
.team-section {
    margin-bottom: 2rem;
    padding: 1.5rem;
}

.team-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-top: 1rem;
    justify-content: center;
}

.team-card {
    background-color: var(--white);
    border-radius: 10px;
    padding: 0;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 6px rgba(0,0,0,0.08);
    border: 1px solid #e0e0e0;
    overflow: hidden;
    width: 300px;
    min-width: 230px;
    display: flex;
    flex-direction: column;
}

.team-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.1);
}

.team-photo-container {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.team-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.team-info {
    padding: 1.2rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.team-name {
    font-weight: 700;
    margin-bottom: 0.4rem;
    font-size: 1.2rem;
    text-transform: uppercase;
    color: var(--headings-gray);
    word-break: break-word;
}

.team-position {
    color: #555;
    font-size: 0.95rem;
    margin-bottom: 1rem;
    font-weight: 400;
    min-height: 40px;
}

.team-bio {
    font-size: 0.95rem;
    margin-top: 0.4rem;
    margin-bottom: 1rem;
    font-weight: 400;
    color: #666;
    flex-grow: 1;
    min-height: 40px;
}

.featured-card {
    display: flex;
    flex-direction: row;
    width: 100%;
    max-width: 900px;
    margin: 2rem auto;
    background-color: #f9f9f9;
    border-radius: 16px;
    box-shadow: 0 4px 18px rgba(0,0,0,0.10);
    overflow: hidden;
    border: 1px solid #e0e0e0;
    align-items: center;
}

.featured-image {
    flex: 0 0 250px;
    height: 250px;
    background: #fff;
    overflow: hidden;
}

.profile-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.featured-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 2rem;
    text-align: left;
}

.featured-info .team-name {
    font-size: 1.3rem;
    font-weight: 700;
    color: #4B1E27;
    margin-bottom: 0.5rem;
}

.featured-info .team-position {
    font-size: 1rem;
    color: #555;
    margin-bottom: 0.5rem;
}

.featured-info .team-bio {
    font-size: 1rem;
    color: #444;
    line-height: 1.6;
}

/* === JOURNAL TABLE === */
.table-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    margin-bottom: 3rem;
    border: 1px solid rgba(0,0,0,0.05);
}

.table-responsive {
    overflow-x: auto;
    width: 100%;
}

.journal-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 600px;
    font-family: 'Merriweather', serif;
}

.journal-table thead {
    background-color: var(--burgundy);
    color: #ffffff;
}

.journal-table th {
    padding: 1.2rem 1.5rem;
    text-align: left;
    font-weight: 900;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-bottom: 3px solid rgba(0,0,0,0.1);
}

.journal-table td {
    padding: 1.5rem;
    border-bottom: 1px solid #eee;
    color: var(--body-text);
    vertical-align: middle;
    font-size: 1rem;
}

.journal-table tbody tr:last-child td {
    border-bottom: none;
}

.journal-table tbody tr {
    transition: background-color 0.2s ease;
}

.journal-table tbody tr:hover {
    background-color: #fff9fa;
}

.cell-label {
    display: none;
}

.status-pill {
    display: inline-block;
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.status-pill.in-progress {
    background-color: #fff3e0;
    color: #e65100;
    border: 1px solid #ffe0b2;
}

.status-pill.coming-soon {
    background-color: #f5f5f5;
    color: #757575;
    border: 1px solid #e0e0e0;
}

/* === VOLUMES & ISSUES === */
.archive-intro {
    text-align: center;
    max-width: 800px;
    margin: -1.5rem auto 2.5rem;
    font-size: 1.1rem;
    color: #495057;
}

.journal-archive-page h2 {
    text-align: left;
    border-bottom-width: 2px;
}

.volumes-container {
    margin: 2rem 0;
}

.volume-group {
    margin-bottom: 3rem;
}

.volume-title {
    text-align: center;
    font-family: 'Merriweather', serif;
    font-weight: 900;
    color: var(--oxblood);
    font-size: 1.5rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 2rem;
    border-bottom: 2px solid var(--burgundy);
    padding-bottom: 0.5rem;
}

.issue-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
}

.issue-card {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 220px;
    height: 220px;
    border-radius: 8px;
    text-decoration: none;
    color: var(--white);
    font-family: 'Merriweather', serif;
    font-weight: 900;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 12px rgba(0,0,0,0.15);
    position: relative;
    overflow: hidden;
    background-color: var(--burgundy);
}

.issue-card:hover {
    transform: translateY(-5px) scale(1.03);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
    text-decoration: none;
}

.issue-number {
    font-size: 2rem;
    line-height: 1.1;
    text-transform: uppercase;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

.issue-subtext {
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    text-shadow: 0 1px 3px rgba(0,0,0,0.4);
    opacity: 0.9;
    margin-top: 0.5rem;
    padding: 0 10px;
}

.issue-card.in-progress,
.issue-card.coming-soon {
    filter: grayscale(60%) opacity(0.8);
    cursor: not-allowed;
}

.issue-card.in-progress:hover,
.issue-card.coming-soon:hover {
    filter: grayscale(0) opacity(1);
}

/* === ARTICLES === */
.articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.5rem;
}

.article-card {
    background-color: #fdfdfd;
    border-radius: 8px;
    padding: 1.5rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
    border-left: 5px solid var(--burgundy);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.article-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.12);
}

.article-card h3 {
    font-family: 'Merriweather', serif;
    font-size: 1.25rem;
    color: var(--oxblood);
    line-height: 1.4;
    margin-top: 0;
    margin-bottom: 1rem;
}

.article-meta {
    margin-bottom: 1rem;
    font-size: 0.95rem;
    color: #333;
}

.article-meta p {
    margin: 0.25rem 0;
}

.article-meta strong {
    font-weight: 600;
    color: #212121;
}

.article-category {
    display: inline-block;
    background-color: #f1f1f1;
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 0.25rem 0.6rem;
    font-size: 0.8rem;
    font-weight: 500;
    color: #555;
    margin-bottom: 1.5rem;
    align-self: flex-start;
}

.article-actions {
    display: flex;
    gap: 0.5rem;
    margin-top: auto;
    flex-wrap: wrap;
}

.article-card .article-btn {
    flex: 1;
    min-width: 120px;
    text-align: center;
    justify-content: center;
    margin-top: auto;
    padding: 0.6rem 1rem;
}

.article-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.6rem 1rem;
    background-color: var(--burgundy);
    color: var(--white);
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    font-weight: 500;
    text-align: center;
    border: none;
    cursor: pointer;
}

.article-btn i {
    margin-right: 0.4rem;
}

.article-btn:hover,
.article-btn:focus {
    background-color: var(--oxblood);
    outline: none;
    text-decoration: none;
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}

/* === POLICY SECTION === */
.policy-section {
    margin-bottom: 2rem;
}

.policy-section h3 {
    font-size: 1.2rem;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
}

.policy-section ul {
    margin-left: 1rem;
}

.policy-section table {
    width: 100%;
    border-collapse: collapse;
    margin: 1rem 0;
}

.policy-section table th,
.policy-section table td {
    padding: 0.75rem;
    text-align: left;
    border: 1px solid #ddd;
}

.policy-section table th {
    background-color: var(--burgundy);
    color: white;
}

.policy-section table tr:nth-child(even) {
    background-color: #f9f9f9;
}

/* === FOOTER === */
footer {
    background-color: rgba(100, 44, 53, 0.05);
    padding: 2rem;
    text-align: center;
    margin-top: 3rem;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 1.5rem;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--body-text);
    text-decoration: none;
    transition: all 0.3s;
    font-family: Georgia, serif;
}

.social-link:hover,
.social-link:focus {
    transform: translateY(-2px);
    outline: none;
}

.social-icon {
    font-size: 1.5rem;
    transition: all 0.3s;
}

.social-link:hover .social-icon,
.social-link:focus .social-icon {
    transform: scale(1.1);
}

.linkedin-icon {
    color: var(--linkedin-blue);
}

.instagram-icon {
    color: var(--instagram-purple);
}

.facebook-icon {
    color: var(--facebook-blue);
}

.footer-text {
    font-size: 0.875rem;
    font-weight: 300;
    margin-bottom: 1rem;
    font-family: Georgia, serif;
}

.contact-email {
    color: var(--highlight);
    text-decoration: none;
}

.contact-email:hover,
.contact-email:focus {
    text-decoration: underline;
    outline: none;
}

/* === LOADING & ERROR STATES === */
.loading-message,
.empty-message,
.error-message {
    text-align: center;
    padding: 2rem;
    font-size: 1.1rem;
    color: #666;
}

.loader {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(100, 44, 53, 0.3);
    border-radius: 50%;
    border-top-color: var(--burgundy);
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.error-message {
    color: #d32f2f;
}

/* === FORM STYLES === */
.field-error {
    color: #d32f2f;
    font-size: 0.85rem;
    margin-top: 0.25rem;
    display: none;
}

input.error,
textarea.error,
select.error {
    border-color: #d32f2f;
}

/* === EDITORIAL BOARD SPECIFIC STYLES === */
.editorial-board-page h3 {
    text-align: center;
    font-weight: 700;
}

/* === JOURNAL ENTRY STYLES === */
.journal-entry {
    background-color: #fdfdfd;
    border-radius: 8px;
    padding: 1.5rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
    border-left: 5px solid var(--burgundy);
    margin-bottom: 1.5rem;
}

.journal-entry h3 {
    font-family: 'Merriweather', serif;
    font-size: 1.25rem;
    color: var(--oxblood);
    line-height: 1.4;
    margin-top: 0;
    margin-bottom: 1rem;
}

.entry-meta {
    margin-bottom: 1rem;
    font-size: 0.95rem;
    color: #333;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.entry-meta span {
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 768px) {
    body {
        font-size: 0.95rem;
        zoom: 1;
    }
    
    header {
        padding: 0.8rem 1rem;
        height: 80px;
    }
    
    .logo-img {
        height: 60px;
    }
    
    .logo-text {
        font-size: 1.6rem;
    }
    
    .logo-tagline {
        font-size: 0.6rem;
        letter-spacing: 1.2px;
    }
    
    .desktop-nav {
        display: none;
    }
    
    .hamburger {
        display: block;
    }
    
    .main-container {
        margin: 2rem auto;
        padding: 0 0.8rem;
    }
    
    h1 {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }
    
    h2 {
        font-size: 1.5rem;
        margin: 2rem 0 1rem;
    }
    
    h3 {
        font-size: 1.2rem;
    }
    
    .values-container,
    .dates-container {
        flex-direction: column;
    }
    
    .contact-info {
        grid-template-columns: 1fr;
    }
    
    .action-buttons {
        max-width: 450px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        text-align: center;
        justify-content: center;
    }
    
    .latest-updates .featured-update {
        flex-direction: column;
    }
    
    .latest-updates .featured-update .news-image {
        max-width: 100%;
        min-width: 100%;
    }
    
    .team-grid {
        justify-content: center;
    }
    
    .team-card {
        width: 100%;
        max-width: 300px;
    }
    
    .featured-card {
        flex-direction: column;
        max-width: 400px;
    }
    
    .featured-image {
        width: 100%;
        height: auto;
        flex: 0 0 auto;
    }
    
    .profile-image {
        border-radius: 16px 16px 0 0;
    }
    
    .featured-info {
        padding: 1.5rem;
        text-align: center;
    }
    
    .articles-grid {
        grid-template-columns: 1fr;
    }
    
    .article-btn {
        width: 100%;
        text-align: center;
        justify-content: center;
    }
    
    .article-actions {
        flex-direction: column;
    }
    
    .social-links {
        flex-direction: column;
        gap: 1rem;
    }
    
    .journal-table th,
    .journal-table td {
        padding: 1rem;
        font-size: 0.9rem;
    }
    
    .btn-table-view {
        padding: 0.5rem 0.8rem;
        font-size: 0.8rem;
    }
    
    .entry-meta {
        flex-direction: column;
        gap: 0.5rem;
    }
}

@media (max-width: 480px) {
    .logo-text {
        font-size: 1.4rem;
    }
    
    .logo-tagline {
        display: none;
    }
    
    .quote {
        font-size: 1.1rem;
    }
    
    .quote-attribution {
        font-size: 1rem;
    }
    
    .welcome {
        font-size: 1rem;
    }
    
    .mission-statement {
        font-size: 0.95rem;
    }
    
    .team-info {
        padding: 1rem;
    }
    
    .team-name {
        font-size: 1.1rem;
    }
    
    .team-position {
        font-size: 0.9rem;
    }
    
    .team-bio {
        font-size: 0.9rem;
    }
    
    .featured-info {
        padding: 1.2rem;
    }
    
    .featured-info .team-name {
        font-size: 1.2rem;
    }
    
    .featured-info .team-bio {
        font-size: 0.95rem;
    }
    
    .issue-card {
        width: 180px;
        height: 180px;
    }
    
    .issue-number {
        font-size: 1.5rem;
    }
    
    .issue-subtext {
        font-size: 0.75rem;
    }
    
    .journal-table {
        font-size: 0.85rem;
    }
    
    .journal-table th,
    .journal-table td {
        padding: 0.75rem 0.5rem;
    }
}

/* === PRINT STYLES === */
@media print {
    header,
    footer,
    .hamburger,
    .mobile-nav,
    .desktop-nav,
    .back-button,
    .action-buttons,
    .social-links {
        display: none;
    }
    
    body {
        zoom: 1;
    }
    
    .main-container {
        max-width: 100%;
        margin: 0;
        padding: 0;
    }
    
    a {
        text-decoration: underline;
    }
}
/* === VOLUME/ISSUE PAGES - CONSISTENT ARTICLE BUTTONS === */

/* Target only volume/issue HTML pages (not the main journal.html) */
.journal-archive-page .articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.5rem;
}

.journal-archive-page .article-card {
    background-color: #fdfdfd;
    border-radius: 8px;
    padding: 1.5rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
    border-left: 5px solid var(--burgundy);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    min-height: 240px;
}

.journal-archive-page .article-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.12);
}

.journal-archive-page .article-card h3 {
    font-family: 'Merriweather', serif;
    font-size: 1.05rem;
    color: var(--oxblood);
    line-height: 1.4;
    margin-top: 0;
    margin-bottom: 1rem;
    flex-grow: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.journal-archive-page .article-meta {
    margin-bottom: 1rem;
    font-size: 0.88rem;
    color: #333;
    flex-shrink: 0;
}

.journal-archive-page .article-meta p {
    margin: 0.25rem 0;
}

.journal-archive-page .article-category {
    display: inline-block;
    background-color: #f1f1f1;
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 0.25rem 0.6rem;
    font-size: 0.8rem;
    font-weight: 500;
    color: #555;
    margin-bottom: 1rem;
    align-self: flex-start;
    flex-shrink: 0;
    min-height: 28px;
}

/* === FIXED SIZE BUTTONS FOR ALL ARTICLE CARDS === */
.journal-archive-page .article-btn {
    display: flex !important;
    align-items: center;
    justify-content: center;
    padding: 0 1rem;
    background-color: var(--burgundy);
    color: var(--white) !important;
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.3s ease;
    font-size: 0.92rem;
    font-weight: 600;
    text-align: center;
    border: none;
    cursor: pointer;
    width: 100%;
    height: 44px;
    min-height: 44px;
    max-height: 44px;
    margin-top: auto;
    flex-shrink: 0;
    gap: 0.5rem;
    font-family: 'Merriweather', Georgia, serif;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.journal-archive-page .article-btn i {
    margin: 0;
    font-size: 0.95rem;
    flex-shrink: 0;
}

.journal-archive-page .article-btn:hover,
.journal-archive-page .article-btn:focus {
    background-color: var(--highlight);
    outline: none;
    text-decoration: none;
    color: var(--white) !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}

/* Remove any action containers that might interfere */
.journal-archive-page .article-actions {
    display: none;
}

/* === RESPONSIVE ADJUSTMENTS === */
@media (max-width: 768px) {
    .journal-archive-page .articles-grid {
        grid-template-columns: 1fr;
    }
    
    .journal-archive-page .article-card {
        min-height: 220px;
    }
    
    .journal-archive-page .article-card h3 {
        font-size: 1rem;
        -webkit-line-clamp: 3;
    }
    
    .journal-archive-page .article-btn {
        height: 42px;
        min-height: 42px;
        max-height: 42px;
        font-size: 0.88rem;
        padding: 0 0.8rem;
    }
}

@media (max-width: 480px) {
    .journal-archive-page .article-card h3 {
        font-size: 0.95rem;
    }
    
    .journal-archive-page .article-btn {
        height: 40px;
        min-height: 40px;
        max-height: 40px;
        font-size: 0.85rem;
        padding: 0 0.7rem;
    }
    
    .journal-archive-page .article-btn i {
        font-size: 0.9rem;
    }
}