/* ============================================================
   INDEX PAGE STYLES
   ============================================================ */

/* ---- Header ---- */
/* Inter (already loaded via style.css) reads cleaner than Calibri
   here while staying simple enough not to compete with the hero text */
/* .header-div .club-name,
.header-div .header-links {
    font-family: Calibri, sans-serif;
} */

.header-div .header-links {
    font-weight: 500;
}

/* ---- Hero Section ---- */
.main-container {
    display: flex;
    width: 100%;
}

/* Thin left margin strip to indent main content from the edge */
.left-spacing {
    width: 50px;
}

.founded-text {
    margin-top: 90px;
    margin-bottom: 10px;
    font-size: 18px;
}

/* Grows to fill the rest of main-container, next to left-spacing */
.hero-container {
    display: flex;
    flex: 1;
    flex-wrap: wrap;
    justify-content: right;
}

.main-description {
    margin-top: 30px;
    font-size: 20px;
    display: flex;
    flex-direction: column;
    font-family:Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
}

.main-description-span {
    margin: 0px;
}

.application-text {
    margin-left: 180px;
}

/* Right side of the hero — grows to fill all remaining width */
.hero-right-container {
    display: flex;
    flex: 1;
    align-items: flex-end;
    justify-content: flex-end;
    gap: 24px;
}

.pmu-pic {
    height: 400px;
    width: auto;
    max-width: 45%;
    object-fit: contain;
    object-position: bottom right;
    background-color: transparent;
    border: none;
}

.purdue-pic {
    height: 580px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
    object-position: bottom right;
    background-color: transparent;
    border: none;
}

@media (max-width: 900px) {
    .application-text {
        margin-left: 0;
    }

    .hero-right-container {
        width: 100%;
        justify-content: center;
        flex-wrap: wrap;
        margin-top: 40px;
    }

    .pmu-pic {
        height: auto;
        max-width: 120%;
        max-height: 240px;
    }

    .purdue-pic {
        height: auto;
        max-height: 420px;
    }
}

.arrow-div {
    display: flex;
    justify-content: center;
    margin-top: 50px;
}

.down-arrow {
    width: 20px;
    height: 20px;
    border-right: 3px solid #000;
    border-bottom: 3px solid #000;
    transform: rotate(45deg);
}


/* ---- Facts Bar ---- */
.valuable-facts {
    display: flex;
    justify-content: space-between;
    margin-top: 80px;
    width: 100%;
}

/* Individual stat cell — all cells except the rightmost */
.fact {
    display: flex;
    align-items: center;
    justify-content: center;
    width: inherit;
    height: 80px;
    font-size: 18px;
    border: 1px solid #8888883e;
    border-left: none;
    color: #888888;
    font-family: Calibri, sans-serif;
}

/* Rightmost stat cell — removes the right border to avoid double border at edge */
.fact-right {
    display: flex;
    align-items: center;
    justify-content: center;
    width: inherit;
    height: 80px;
    font-size: 18px;
    border: 1px solid #8888883e;
    border-left: none;
    border-right: none;
    color: #888888;
    font-family: Calibri, sans-serif;
}

.fact-number {
    font-size: 35px;
}

@media (max-width: 700px) {
    .valuable-facts {
        flex-direction: column;
    }

    .fact,
    .fact-right {
        border-left: 1px solid #8888883e;
        border-right: 1px solid #8888883e;
        border-top: none;
    }
}


/* ---- Industry News ----
   External articles from consulting firms and AI companies, laid out
   as a single linear list ordered newest to oldest — no images. */
.industry-news-section {
    background-color: #f2efe9;
    padding: 100px 8%;
}

.industry-news-heading {
    font-size: clamp(28px, 3.4vw, 44px);
    line-height: 1.25;
    margin: 10px 0 60px;
}

.industry-news-grid {
    display: flex;
    flex-direction: column;
    max-width: 900px;
    margin: 0 auto;
}

.industry-news-card {
    display: block;
    border-top: 1px solid #d8d3c8;
    padding: 30px 0;
}

.industry-news-grid .industry-news-card:last-child {
    border-bottom: 1px solid #d8d3c8;
}

.industry-news-title-link {
    color: inherit;
}

.industry-news-title {
    font-size: 22px;
    font-weight: bold;
    line-height: 1.3;
    margin: 0 0 14px;
}

.industry-news-title-link:hover .industry-news-title {
    color: #B8922A;
}

.industry-news-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.industry-news-meta {
    font-size: 14px;
    color: #777;
    font-family: Calibri, sans-serif;
    margin: 0;
}

.industry-news-actions {
    display: flex;
    gap: 14px;
}

.industry-news-save-btn,
.industry-news-share-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    padding: 0;
    border: none;
    border-radius: 50%;
    background: none;
    color: #555;
    cursor: pointer;
    transition: background-color 0.15s, color 0.15s;
}

.industry-news-save-btn svg,
.industry-news-share-btn svg {
    width: 19px;
    height: 19px;
}

.industry-news-save-btn:hover,
.industry-news-share-btn:hover {
    background-color: #e8e2d3;
    color: #2D2D2D;
}

/* Saved state — bookmark fills gold once clicked, persisted via localStorage */
.industry-news-save-btn.saved {
    color: #B8922A;
}

.industry-news-save-btn.saved svg path {
    fill: #B8922A;
}

/* Brief confirmation after the link is copied to the clipboard */
.industry-news-share-btn.copied {
    color: #3a7d3a;
}
