/* Expandable cards (template; use .expandable-card on markup if needed) */
.expandable-card .card-text-container {
    max-height: 200px;
    overflow-y: hidden;
    position: relative;
}

.expandable-card.expanded .card-text-container {
    max-height: none;
}

.expand-btn {
    position: relative;
    display: none;
    background-color: rgba(255, 255, 255, 0.8);
    color: #510c75;
    border-color: transparent;
}

.expand-btn:hover {
    background-color: rgba(200, 200, 200, 0.8);
    text-decoration: none;
    border-color: transparent;
    color: #510c75;
}

.expand-btn:focus {
    outline: none;
    text-decoration: none;
}

.expandable-card:not(.expanded) .card-text-container:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 90px;
    background: linear-gradient(rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 1));
}

.expandable-card:not(.expanded) .expand-btn {
    margin-top: -40px;
}

.card-body {
    padding-bottom: 5px;
}

.vertical-flex-layout {
    justify-content: center;
    align-items: center;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.figure-img {
    max-width: 100%;
    height: auto;
}

.adjustable-font-size {
    font-size: calc(0.5rem + 2vw);
}

/* Education blocks */
.education-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.education-block {
    background: white;
    border: 2px solid #dbdbdb;
    border-radius: 8px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none;
    color: inherit;
    display: block;
}

.education-block:hover {
    border-color: #3273dc;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transform: translateY(-4px);
}

.education-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.education-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #363636;
    margin-bottom: 0.5rem;
}

.education-subtitle {
    font-size: 0.95rem;
    color: #7a7a7a;
}

/* Experience grid */
.experience-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.experience-block {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.experience-block:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
}

.experience-block-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #363636;
    margin-bottom: 1.5rem;
    text-align: left;
}

.experience-subsection {
    margin-bottom: 1.5rem;
}

.experience-subsection:last-child {
    margin-bottom: 0;
}

.experience-subtitle {
    font-size: 0.95rem;
    font-weight: 600;
    color: #4a4a4a;
    margin-bottom: 0.75rem;
    text-align: left;
}

.experience-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.experience-tag {
    background: white;
    color: #4a4a4a;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    border: 1px solid #e0e0e0;
    transition: all 0.2s ease;
    font-weight: 500;
}

.experience-tag:hover {
    border-color: #3273dc;
    color: #3273dc;
    transform: translateY(-1px);
}

/* Hero typewriter (ChatGPT-style stream) */
.hero-typewriter-root {
    min-height: 12rem;
    text-align: center;
}

.hero-typewriter-stage {
    min-height: 10.5rem;
}

.hero-typewriter-indicator {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 0.75rem;
    font-size: 0.8rem;
    color: #7a7a7a;
}

.hero-typewriter-dots {
    display: inline-flex;
    gap: 0.15rem;
}

.hero-typewriter-dots span {
    width: 0.28rem;
    height: 0.28rem;
    border-radius: 50%;
    background: #3273dc;
    animation: hero-tw-dot 1.05s ease-in-out infinite both;
}

.hero-typewriter-dots span:nth-child(2) {
    animation-delay: 0.15s;
}

.hero-typewriter-dots span:nth-child(3) {
    animation-delay: 0.3s;
}

@keyframes hero-tw-dot {
    0%,
    80%,
    100% {
        opacity: 0.25;
        transform: translateY(0);
    }

    40% {
        opacity: 1;
        transform: translateY(-2px);
    }
}

.hero-typewriter-indicator.is-idle .hero-typewriter-dots span {
    animation: none;
    opacity: 0.35;
}

.hero-tw-caret {
    display: inline-block;
    margin-left: 1px;
    color: #3273dc;
    font-weight: 300;
    animation: hero-tw-blink 0.95s step-end infinite;
}

@keyframes hero-tw-blink {
    50% {
        opacity: 0;
    }
}

.hero-typewriter-stage .hero-tw-block {
    margin-bottom: 0.35rem;
}

.hero-typewriter-stage .hero-tw-block:last-child {
    margin-bottom: 0;
}

.stack-logo--fa {
    color: #4a4a4a;
    font-size: 1.35rem;
    text-decoration: none;
}

.stack-logo--fa:hover {
    color: #3273dc;
}

/* Page sections & hero */
.link-hero-ai {
    color: #008ad7;
    font-weight: normal;
}

.hero-uni-accent {
    color: #f68946;
    font-weight: normal;
}

.text-hello-accent {
    color: #ff3860;
}

.section-bg-soft {
    background-color: #efeff081;
}

.abstract-lead {
    font-size: 95%;
}

.work-intro {
    margin-bottom: 2rem;
    font-size: 1.05rem;
    color: #666;
}

.experience-summary {
    margin-bottom: 2.5rem;
}

.experience-summary-text {
    color: #4a4a4a;
}

.experience-tags--centered {
    justify-content: center;
}

/* Stack strip (logos below Work Experience) */
.stack-showcase-section {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
    background: #fafafa;
    border-top: 1px solid #ededed;
    border-bottom: 1px solid #ededed;
}

.stack-showcase-section--embedded {
    background: transparent;
    border-top: none;
    border-bottom: none;
}

.stack-showcase-title {
    margin-bottom: 1rem !important;
    font-weight: 600;
    color: #363636;
}

.stack-showcase {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
    max-width: 22rem;
    margin: 0 auto;
}

.stack-arrow {
    flex-shrink: 0;
    width: 2.65rem;
    height: 2.65rem;
    border-radius: 50%;
    border: 1px solid #dbdbdb;
    background: #fff;
    color: #363636;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

.stack-arrow i {
    font-size: 1rem;
}

.stack-arrow:hover {
    border-color: #3273dc;
    color: #3273dc;
    background: #f6f9ff;
}

.stack-arrow:focus {
    outline: 2px solid #3273dc;
    outline-offset: 2px;
}

.stack-viewport {
    flex: 1;
    min-width: 0;
    max-width: 14rem;
    mask-image: linear-gradient(to right, transparent, #000 12%, #000 88%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, #000 12%, #000 88%, transparent);
}

.stack-scroll {
    overflow-x: auto;
    overflow-y: hidden;
    scrollbar-width: none;
    -ms-overflow-style: none;
    scroll-behavior: auto;
    padding: 0.35rem 0;
}

.stack-scroll::-webkit-scrollbar {
    display: none;
}

.stack-track {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    gap: 1.75rem;
    width: max-content;
    padding: 0 0.5rem;
}

.stack-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    opacity: 0.92;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.stack-logo:hover {
    opacity: 1;
    transform: scale(1.08);
}

.stack-logo img {
    width: 32px;
    height: 32px;
    object-fit: contain;
    display: block;
    pointer-events: none;
}

/* Layout trial block (industries → work experience → stack) at page end */
.layout-order-trial-wrap {
    scroll-margin-top: 1rem;
    background: #fff;
}

.layout-order-trial-kicker {
    margin-bottom: 0.25rem;
}

.layout-order-trial-sub {
    margin-bottom: 0.75rem;
    font-size: 0.88rem;
    max-width: 32rem;
    margin-left: auto;
    margin-right: auto;
}

/* Industries strip (same drift behavior as .stack-showcase) */
.industry-showcase-section {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
    background: #fff;
    border-top: 1px solid #ededed;
}

.industry-showcase-section--embedded {
    border-top: none;
    background: transparent;
    padding-top: 0.5rem;
    padding-bottom: 1.2rem;
}

.stack-showcase.industry-showcase {
    max-width: min(36rem, 96vw);
}

#stack-showcase-main.stack-showcase {
    max-width: min(36rem, 96vw);
    gap: 0.35rem;
}

#stack-showcase-main .stack-viewport {
    max-width: min(28rem, 92vw);
}

.industry-showcase-sub {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 1rem;
    max-width: 28rem;
    margin-left: auto;
    margin-right: auto;
}

.industry-showcase .stack-viewport {
    max-width: min(28rem, 92vw);
}

.industry-track {
    align-items: stretch;
    gap: 2rem;
    padding: 0 0.75rem;
}

.industry-tile {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    flex-shrink: 0;
    min-width: 5.5rem;
    max-width: 7.5rem;
    text-align: center;
    color: #363636;
    user-select: none;
}

.industry-tile-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.05rem;
    height: 2.05rem;
    border-radius: 8px;
    background: #f0f4ff;
    border: 1px solid #d4e0fc;
    color: #3273dc;
    font-size: 0.95rem;
    margin-bottom: 0.45rem;
}

.industry-tile-label {
    font-size: 0.72rem;
    font-weight: 600;
    line-height: 1.25;
    color: #4a4a4a;
    text-transform: none;
    min-height: 1.9rem;
    display: flex;
    align-items: flex-start;
    justify-content: center;
}

/* Teaching proposal preview (contrasts with classic #courses-classic above) */
.teaching-proposal-section {
    background-color: #fff;
    border-top: 1px solid #e8e8e8;
}

.teaching-proposal-badge {
    display: inline-block;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 700;
    color: #3273dc;
    margin-bottom: 0.35rem;
}

/* Work experience — compact icon variant (extra section) */
.experience-compact-section {
    background-color: #fff;
    border-top: 1px solid #ededed;
    padding-top: 3rem;
    padding-bottom: 3rem;
}

.experience-compact-heading-icon {
    vertical-align: middle;
    margin-right: 0.35rem;
}

.experience-compact-intro {
    max-width: 40rem;
    margin-left: auto;
    margin-right: auto;
}

.experience-compact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1rem 1.25rem;
    margin-top: 1.5rem;
}

.experience-compact-card {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 0.85rem 1rem 1rem;
    border: 1px solid #eaeaea;
}

.experience-compact-card-title {
    margin-bottom: 0.65rem !important;
    text-align: left;
    font-size: 1rem !important;
}

.experience-icons-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
    align-items: center;
    justify-content: flex-start;
}

.experience-icon-wrap {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.1rem;
    height: 2.1rem;
    border-radius: 8px;
    background: #fff;
    border: 1px solid #e0e0e0;
    color: #4a4a4a;
    font-size: 0.95rem;
    cursor: default;
    transition: border-color 0.15s ease, color 0.15s ease, transform 0.15s ease;
}

.experience-icon-wrap:hover {
    border-color: #3273dc;
    color: #3273dc;
    transform: translateY(-2px);
}

/* Teaching: three pathways + on-page curriculum */
.teaching-pathways-wrap {
    padding: 0.5rem 0 0;
    margin-bottom: 2.5rem;
}

.teaching-pathways-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
}

.teaching-path-card {
    background: #fff;
    border: 1px solid #e8e8e8;
    border-radius: 12px;
    padding: 1.5rem 1.25rem;
    display: flex;
    flex-direction: column;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.teaching-path-card:hover {
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
}

.teaching-path-card-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: #363636;
    margin-bottom: 0.75rem;
}

.teaching-path-card-text {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 1rem;
    flex-grow: 1;
    text-align: left;
}

.teaching-path-tags {
    justify-content: center;
    margin-bottom: 1.25rem;
}

.teaching-path-cta {
    align-self: center;
    margin-top: auto;
}

.teaching-at-glance-block {
    margin-bottom: 2.5rem;
}

.teaching-at-glance-title {
    margin-bottom: 0.35rem;
}

.teaching-at-glance-sub {
    color: #7a7a7a;
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.teaching-at-glance {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
}

.teaching-glance-pill {
    display: inline-block;
    padding: 0.45rem 0.9rem;
    border-radius: 999px;
    font-size: 0.85rem;
    font-weight: 500;
    color: #363636;
    background: #f5f5f5;
    border: 1px solid #e0e0e0;
    text-decoration: none;
    transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
}

.teaching-glance-pill:hover {
    border-color: #3273dc;
    color: #3273dc;
    background: #fff;
}

.courses-detail-wrap {
    text-align: left;
    max-width: 720px;
    margin: 0 auto;
}

.teaching-detail-target {
    scroll-margin-top: 1.25rem;
}

.teaching-detail-block {
    margin-bottom: 2.5rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #ededed;
}

.teaching-detail-block:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.teaching-detail-block--soft {
    background: rgba(255, 255, 255, 0.75);
    border-radius: 12px;
    padding: 1.75rem 1.5rem;
    border: 1px solid #e8e8e8;
    border-bottom: none;
    margin-bottom: 2.5rem;
}

.teaching-detail-lead {
    color: #666;
    font-size: 0.98rem;
    margin-bottom: 1.25rem;
}

/* Work Experience — three branches + dialog popups */
.work-branches-section {
    scroll-margin-top: 0.75rem;
}

.work-branches-heading-icon {
    vertical-align: middle;
    margin-right: 0.35rem;
}

.work-branches-intro {
    max-width: 40rem;
    margin-left: auto;
    margin-right: auto;
}

.work-branches-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    grid-auto-rows: 1fr;
    gap: 0.85rem;
    margin-top: 0.5rem;
}

.work-branch-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    font-family: inherit;
    font-size: 1rem;
    background: #1f1f22;
    border: 1px solid #35353a;
    border-radius: 10px;
    padding: 0.9rem 0.85rem;
    cursor: pointer;
    box-shadow: none;
    transition: box-shadow 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
    color: #f5f5f5;
    width: 100%;
    height: 100%;
}

.work-branch-card:hover {
    border-color: #f2f2f2;
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.35);
    transform: translateY(-2px);
}

.work-branch-card:focus {
    outline: none;
    border-color: #f2f2f2;
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.22);
}

.work-branch-card-emoji {
    font-size: 1.75rem;
    line-height: 1;
    margin-bottom: 0.65rem;
}

.work-branch-card-label {
    font-size: 0.68rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-weight: 700;
    color: #d6d6d6;
    margin-bottom: 0.35rem;
}

.work-branch-card-title {
    font-size: 1.12rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.2rem;
    line-height: 1.25;
}

.work-branch-card-alias {
    font-size: 0.9rem;
    font-style: italic;
    color: #b8b8b8;
    margin-bottom: 0.75rem;
}

.work-branch-card-focus {
    font-size: 0.92rem;
    color: #e4e4e4;
    line-height: 1.62;
    letter-spacing: 0.01em;
    margin-bottom: 0.85rem;
    flex-grow: 1;
    align-self: stretch;
    text-align: justify;
    text-align-last: left;
    text-justify: inter-word;
}

.work-branch-card-hint {
    font-size: 0.8rem;
    font-weight: 500;
    color: #111;
    background: #f5f5f5;
    border: 1px solid #dedede;
    border-radius: 999px;
    padding: 0.42rem 1.1rem;
    line-height: 1.2;
    align-self: center;
    margin-top: auto;
    text-align: center;
}

.work-branch-dialog {
    border: none;
    border-radius: 12px;
    padding: 0;
    max-width: 36rem;
    width: calc(100vw - 2rem);
    max-height: calc(100vh - 2rem);
    overflow: hidden;
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.22);
}

.work-branch-dialog::backdrop {
    background: rgba(0, 0, 0, 0.48);
}

.work-branch-dialog-panel {
    position: relative;
    padding: 1.5rem 1.35rem 1.35rem;
    overflow-y: auto;
    max-height: calc(100vh - 2rem);
}

.work-branch-dialog-close {
    position: absolute;
    top: 0.65rem;
    right: 0.65rem;
    width: 2.25rem;
    height: 2.25rem;
    border: none;
    border-radius: 50%;
    background: #f0f0f0;
    color: #363636;
    font-size: 1.35rem;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.15s ease, color 0.15s ease;
}

.work-branch-dialog-close:hover {
    background: #e0e0e0;
    color: #000;
}

.work-branch-dialog-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: #363636;
    padding-right: 2.5rem;
    margin-bottom: 0.85rem;
    line-height: 1.35;
}

.work-branch-dialog-focus {
    font-size: 0.95rem;
    color: #4a4a4a;
    margin-bottom: 1rem;
    line-height: 1.45;
}

.work-branch-dialog-list {
    margin: 0;
    padding-left: 1.15rem;
    color: #4a4a4a;
    font-size: 0.92rem;
    line-height: 1.55;
}

.work-branch-dialog-list li {
    margin-bottom: 0.65rem;
}

.work-branch-dialog-list li:last-child {
    margin-bottom: 0;
}

.education-heading-icon {
    margin-right: 10px;
}

.education-intro {
    margin-bottom: 2rem;
    font-size: 1.1rem;
    color: #4a4a4a;
}

.courses-layout {
    display: flex;
    justify-content: center;
}

.courses-inner {
    text-align: left;
    max-width: 520px;
    width: 100%;
}

.courses-section-title-first {
    margin-top: 1rem;
}

.courses-section-title {
    margin-top: 1.5rem;
}

.courses-list {
    list-style: none;
    padding-left: 0;
}

/* Preview section: compact Research & Education */
.research-education-preview {
    background: #efeff081;
    padding-top: 2.25rem;
    padding-bottom: 2.4rem;
    border-top: 1px solid #ededed;
}

.research-education-preview-lead {
    color: #5a5a5a;
    font-size: 0.96rem;
    line-height: 1.45;
    max-width: 46rem;
    margin: 0.45rem auto 0.9rem;
}

.research-education-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.45rem;
    margin-bottom: 1.2rem;
}

.research-link-pill {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 600;
    color: #4a4a4a;
    background: #f7f7f7;
    border: 1px solid #e4e4e4;
    border-radius: 999px;
    padding: 0.35rem 0.75rem;
    text-decoration: none;
    transition: border-color 0.15s ease, color 0.15s ease, background 0.15s ease;
}

.research-link-pill:hover {
    border-color: #3273dc;
    color: #3273dc;
    background: #fff;
}

.research-education-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 0.85rem;
}

.research-education-card {
    border: 1px solid #e8e8e8;
    border-radius: 10px;
    background: #fff;
    padding: 0.9rem 0.85rem;
    text-align: left;
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    transition: box-shadow 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
}

.research-education-card:hover {
    border-color: #000;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
    transform: translateY(-2px);
}

.research-education-card:focus {
    outline: none;
    border-color: #000;
    box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.18);
}

.research-education-card-emoji {
    font-size: 1.75rem;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.research-education-card-title {
    font-size: 1.12rem;
    font-weight: 700;
    color: #1f1f22;
    margin: 0 0 0.2rem;
    text-align: center;
    line-height: 1.25;
    align-self: stretch;
}

.research-education-card-subtitle {
    font-size: 0.9rem;
    font-style: italic;
    font-weight: 400;
    color: #7a7a7a;
    margin: 0 0 0.75rem;
    text-align: center;
    line-height: 1.35;
    align-self: stretch;
}

.research-education-card-text {
    font-size: 0.92rem;
    color: #4a4a4a;
    line-height: 1.62;
    letter-spacing: 0.01em;
    margin: 0 0 0.75rem;
    align-self: stretch;
    text-align: justify;
    text-align-last: left;
    text-justify: inter-word;
}

.research-education-card-tags {
    justify-content: flex-start;
    margin-bottom: 1rem;
    align-self: stretch;
    width: 100%;
    flex-grow: 1;
}

/* Footer / CTA */
.footer-cta-section {
    padding: 6rem 2rem;
    min-height: 60vh;
    display: flex;
    align-items: center;
}

.footer-cta-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: #363636;
}

.footer-email-wrap {
    margin: 3rem 0;
}

.footer-email-link {
    text-decoration: none;
}

.footer-email-icon {
    font-size: 4rem;
    color: #363636;
}

.footer-social-row {
    margin-top: 5rem;
    margin-bottom: 2rem;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background-color: #000;
    border-radius: 50%;
    margin: 0 0.5rem;
    text-decoration: none;
    transition: transform 0.2s;
    color: #fff !important;
}

.social-icon:link,
.social-icon:visited,
.social-icon:hover,
.social-icon:active {
    color: #fff !important;
}

.social-icon .fab,
.social-icon .fas,
.social-icon i {
    color: #fff !important;
    font-size: 1.2rem;
}

.social-icon:hover {
    transform: translateY(-3px);
    opacity: 0.8;
}

.footer-copyright {
    color: #7a7a7a;
    font-size: 0.95rem;
    margin-top: 1.5rem;
}
