/* =========================
   GLOBAL / RESET
========================= */
* {
    box-sizing: border-box;
}

html, body {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    overflow-x: hidden; /* Prevent horizontal scroll */
}

body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(-45deg, #34a853, #4285f4, #fbbc05, #ea4335);
    background-size: 400% 400%;
    background-attachment: fixed;
    animation: gradientAnimation 15s ease infinite;
    color: #333;
}

a {
    text-decoration: none;
    color: inherit;
}

h1, h2, h3 {
    margin-bottom: 20px;
}

ul {
    padding-left: 20px;
}

ul li {
    margin-bottom: 10px;
}


/* =========================
   SHARED ANIMATIONS
========================= */
@keyframes gradientAnimation {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}


/* =========================
   NAVBAR
========================= */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.9);
    padding: 10px 20px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.navbar-menu {
    list-style: none;
    display: flex;
    gap: 20px;
    margin: 0;
}

.navbar-menu li {
    display: inline;
}

.navbar-menu a {
    text-decoration: none;
    font-size: 1rem;
    color: #333;
    font-weight: 500;
}

.navbar-toggler {
    display: none; /* Hide the hamburger by default */
    background: none;
    border: none;
    font-size: 30px;
    color: #333;
}

/* Collapsed navigation for tablets and smaller windows */
@media (max-width: 1150px) {
    .navbar {
        position: relative;
        padding: 12px 20px;
    }

    .navbar-menu {
        display: none;
        flex-direction: column;
        width: 100%;
        position: absolute;
        top: 100%;
        left: 0;
        gap: 0;
        padding: 10px 0 16px;
        background: rgba(255, 255, 255, 0.98);
        box-shadow: 0 8px 18px rgba(0, 0, 0, 0.18);
    }

    .navbar-menu.show {
        display: flex;
    }

    .navbar-menu li {
        display: block;
        width: 100%;
        margin: 0;
    }

    .navbar-menu a {
        display: block;
        width: 100%;
        padding: 11px 22px;
    }

    .navbar-menu a:hover {
        background: rgba(66, 133, 244, 0.1);
    }

    .navbar-toggler {
        display: block;
        cursor: pointer;
    }
}


/* =========================
   CTA BUTTON (shared)
========================= */
.cta-button {
    display: inline-block;
    background-color: #ffd700;
    color: #333;
    padding: 12px 24px;
    border-radius: 5px;
    font-weight: bold;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.3s ease-in-out;
}

.cta-button:hover {
    background-color: #ffc107;
    transform: scale(1.1);
}


/* =========================
   HOME HERO
========================= */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    color: white;
    padding: 20px;
    background: linear-gradient(-45deg, #34a853, #4285f4, #fbbc05, #ea4335);
    background-size: 400% 400%;
    animation: gradientAnimation 15s ease infinite;
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.hero p {
    font-size: 1.5rem;
    margin-bottom: 20px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}


/* =========================
   BASIC ABOUT SECTION (home)
========================= */
.about {
    padding: 60px 20px;
    background-color: #fff;
    text-align: center;
    box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.1);
}

.about h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.about p {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.1rem;
    line-height: 1.8;
}


/* =========================
   PROJECTS SECTION (older grid)
========================= */
.projects {
    padding: 60px 20px;
    background-color: #f9f9f9;
    text-align: center;
}

.project-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.project-item {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.project-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.project-item img {
    width: 100%;
    border-radius: 10px 10px 0 0;
}

.project-item h3 {
    font-size: 1.5rem;
    margin: 15px 0;
}

.project-item p {
    padding: 0 15px;
    font-size: 1rem;
    color: #555;
}

.project-link {
    display: block;
    background-color: #4285f4;
    color: white;
    padding: 10px;
    font-weight: bold;
    border-radius: 0 0 10px 10px;
    text-align: center;
    transition: background-color 0.3s ease;
}

.project-link:hover {
    background-color: #3367d6;
}


/* =========================
   FOOTER
========================= */
footer {
    background-color: #333;
    color: #fff;
    padding: 20px 0;
    text-align: center;
}

footer p {
    margin: 0;
    font-size: 0.9rem;
    margin-bottom: 10px;
    color: #ccc;
}

footer .social-links {
    list-style: none;
    padding: 0;
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 10px;
}

footer .social-links li {
    display: inline-block;
}

footer .social-links a {
    color: #ffd700;
    font-size: 1.2rem;
    transition: color 0.3s ease, transform 0.3s ease;
    text-decoration: none;
}

footer .social-links a:hover {
    color: #fff;
    transform: scale(1.1);
}

footer span {
    color: #ffd700;
    font-weight: bold;
}


/* =========================
   ABOUT PAGE HERO
========================= */
.hero-about {
    text-align: center;
    padding: 20px 10px;
    background: rgba(0, 0, 0, 0.6);
    border-radius: 8px;
    margin-bottom: 30px;
    color: white;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2);
}

.hero-about h1 {
    font-size: 2rem;
    margin-bottom: 10px;
    color: #ffd700;
}

.hero-about p {
    font-size: 1rem;
    line-height: 1.6;
    margin: 0 auto;
    max-width: 800px;
}


/* =========================
   ABOUT PAGE LAYOUT
========================= */
.about-page {
    padding: 60px 20px;
    background: linear-gradient(-45deg, #34a853, #4285f4, #fbbc05, #ea4335);
    background-size: 400% 400%;
    animation: gradientAnimation 15s ease infinite;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    align-items: start;
}

.about-left {
    background: rgba(0, 0, 0, 0.5);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.about-left h2, .about-left h3 {
    color: #ffd700;
    font-size: 1.8rem;
}

.about-left p {
    font-size: 1.1rem;
    line-height: 1.8;
}

.skills-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.skills-list li {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.skill-icon {
    margin-right: 10px;
    font-size: 1.5rem;
}

.fun-facts {
    list-style: none;
    padding: 0;
    margin: 0;
    line-height: 1.8;
}

.fun-facts li {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.timeline {
    background: rgba(0, 0, 0, 0.5);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.timeline-container {
    position: relative;
    padding: 20px 0;
    border-left: 4px solid rgba(255, 255, 255, 0.5);
}

.timeline-item {
    position: relative;
    padding-left: 30px;
    margin-bottom: 40px;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.marker {
    position: absolute;
    top: 0;
    left: -12px;
    width: 20px;
    height: 20px;
    background-color: #ffd700;
    border: 4px solid white;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.8);
}

.timeline-item .content {
    background: rgba(0, 0, 0, 0.5);
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

@media screen and (max-width: 768px) {
    .about-grid {
        grid-template-columns: 1fr;
    }

    .about-left, .timeline {
        justify-content: flex-start;
    }
}

.cta-bottom {
    text-align: center;
    margin-top: 40px;
    padding: 20px;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.cta-bottom p {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: white;
}


/* =========================
   RESUME PAGE
========================= */
.resume-page {
    padding: 40px 20px;
    width: 100%;
    margin: 0 auto;
    background: linear-gradient(-45deg, #34a853, #4285f4, #fbbc05, #ea4335);
    background-size: 400% 400%;
    animation: gradientAnimation 15s ease infinite;
}

.resume-header {
    text-align: center;
    margin-bottom: 40px;
    color: white;
    padding: 20px;
    background: rgba(0, 0, 0, 0.7);
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.resume-section {
    margin-bottom: 40px;
    background: rgba(0, 0, 0, 0.6);
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.resume-section h2 {
    font-size: 1.8rem;
    color: #ffd700;
    margin-bottom: 10px;
}

.interactive-box {
    background: rgba(0, 0, 0, 0.5);
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    margin-bottom: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.interactive-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.4);
}

.resume-section p,
.resume-section ul li,
.interactive-box h3,
.interactive-box p {
    color: white;
    font-size: 1rem;
    line-height: 1.6;
}

.skills-list {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.skill-item {
    background: rgba(0, 0, 0, 0.5);
    padding: 10px 15px;
    border-radius: 6px;
    color: white;
    font-size: 1rem;
    transition: transform 0.3s ease, background 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.skill-item:hover {
    background: #ffd700;
    color: black;
    transform: scale(1.1);
}

@media screen and (max-width: 768px) {
    .resume-header p { font-size: 0.9rem; }
    .resume-section h2 { font-size: 1.5rem; }
    ul li { font-size: 0.9rem; }
}


/* =========================
   PROJECTS PAGES (projects/research/current)
========================= */
.projects-page {
    padding: 40px 20px;
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    background: linear-gradient(-45deg, #34a853, #4285f4, #fbbc05, #ea4335);
    background-size: 400% 400%;
    animation: gradientAnimation 15s ease infinite;
}

.projects-header {
    text-align: center;
    margin-bottom: 40px;
    color: white;
}

.projects-header h1 {
    font-size: 2.5rem;
    color: #ffd700;
    margin-bottom: 10px;
}

.projects-header p {
    font-size: 1.2rem;
    line-height: 1.8;
    margin: 0 auto;
    max-width: 800px;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    width: 100%;
    align-items: start;
    padding-bottom: 20px;
}

.project-card {
    background: rgba(0, 0, 0, 0.6);
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    color: white;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: auto;
    min-width: 0; /* prevent overflow */
}

.project-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.4);
}

.project-card h2 {
    font-size: 1.5rem;
    color: #ffd700;
    margin-bottom: 10px;
}

.project-card p {
    font-size: 0.9rem;
    line-height: 1.4;
    margin-bottom: 10px;
}

.project-button {
    display: inline-block;
    background-color: #ffd700;
    color: black;
    padding: 8px 16px;
    border-radius: 5px;
    font-weight: bold;
    font-size: 0.9rem;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.project-button:hover {
    background-color: #ffc107;
    transform: scale(1.1);
}

@media screen and (max-width: 768px) {
    .projects-header h1 { font-size: 2rem; }
    .projects-header p { font-size: 1rem; }
    .project-card h2 { font-size: 1.2rem; }
    .project-card p { font-size: 0.9rem; }
}


/* =========================
   CONTACT PAGE
========================= */
.contact-page {
    padding: 40px 20px;
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: linear-gradient(-45deg, #34a853, #4285f4, #fbbc05, #ea4335);
    background-size: 400% 400%;
    animation: gradientAnimation 15s ease infinite;
}

.contact-header {
    text-align: center;
    color: white;
    margin-bottom: 40px;
}

.contact-header h2 {
    font-size: 2.5rem;
    color: #ffd700;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.contact-header p {
    font-size: 1.5rem;
    line-height: 1.8;
    margin: 0 auto;
    max-width: 800px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.contact-info {
    text-align: center;
    margin-top: 40px;
    color: white;
}

.contact-info h3 {
    font-size: 2.5rem;
    color: #ffd700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.contact-info p {
    font-size: 1.5rem;
    margin-bottom: 10px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.contact-info a {
    color: #ffd700;
    font-weight: bold;
    font-size: 1.5rem;
    text-decoration: none;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.contact-info a:hover {
    color: #ffc107;
    transform: scale(1.05);
}

.contact-form {
    text-align: left;
    margin-top: 40px;
    background: rgba(0, 0, 0, 0.5);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    width: 100%;
    max-width: 600px;
}

.contact-form h3 {
    font-size: 2rem;
    color: #ffd700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.contact-form label {
    display: block;
    font-size: 1.1rem;
    color: white;
    margin-top: 15px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px;
    font-size: 1rem;
    margin-top: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    background-color: #fff;
    color: #333;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: #4285f4;
    outline: none;
}

.contact-form button {
    margin-top: 20px;
    background-color: #ffd700;
    color: black;
    padding: 12px 24px;
    border-radius: 5px;
    font-weight: bold;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.contact-form button:hover {
    background-color: #ffc107;
    transform: scale(1.1);
}

@media screen and (max-width: 768px) {
    .contact-info a { font-size: 1.2rem; }
    .contact-form input,
    .contact-form textarea { font-size: 1rem; }
    .contact-form button { font-size: 1.1rem; }
    .contact-header h2 { font-size: 2rem; }
    .contact-header p { font-size: 1.2rem; }
}
.more-projects-cta {
  margin-top: 80px;
  padding: 60px 20px;
  text-align: center;
  background: linear-gradient(135deg, #0f172a, #1e293b);
  border-radius: 20px;
}

.more-projects-content h2 {
  font-size: 2rem;
  margin-bottom: 15px;
}

.more-projects-content p {
  max-width: 600px;
  margin: 0 auto 25px auto;
  line-height: 1.6;
  opacity: 0.9;
}

.secondary-cta {
  background: white;
  color: #0f172a;
  padding: 12px 26px;
  border-radius: 999px;
  font-weight: 600;
  transition: 0.3s ease;
}

.secondary-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0,0,0,.25);
}

/* Added pages and controls, matched to the original portfolio style */
.flash-message{max-width:900px;margin:90px auto 0;padding:14px 18px;border-radius:8px;background:rgba(0,0,0,.78);color:#fff;text-align:center}.flash-message.error{border:1px solid #ea4335}.flash-message.success{border:1px solid #34a853}
.articles-page,.blog-page,.admin-page,.blog-article{min-height:100vh;padding:110px 24px 70px;color:#fff;background:linear-gradient(-45deg,rgba(52,168,83,.82),rgba(66,133,244,.82),rgba(251,188,5,.82),rgba(234,67,53,.82));background-size:400% 400%;animation:gradientAnimation 15s ease infinite}.articles-header,.blog-header{text-align:center;max-width:850px;margin:0 auto 35px}.articles-header h1,.blog-header h1,.admin-page h1,.blog-article h1{color:#ffd700;font-size:2.6rem;text-shadow:2px 2px 5px rgba(0,0,0,.65)}
.article-carousel,.blog-card,.admin-form,.admin-row,.blog-article{max-width:1050px;margin:0 auto;background:rgba(0,0,0,.68);border-radius:16px;padding:34px;box-shadow:0 10px 30px rgba(0,0,0,.3)}.article-slide{display:none;min-height:390px}.article-slide.active{display:block}.article-slide h2,.blog-card h2,.admin-row h2{color:#ffd700}.article-source{color:#ffd700;font-weight:700}.article-caption{font-size:.9rem;opacity:.8}.article-slide-layout{display:grid;grid-template-columns:minmax(280px,44%) 1fr;gap:32px;align-items:center}.article-slide-layout img{width:100%;height:330px;object-fit:cover;border-radius:12px;box-shadow:0 6px 18px rgba(0,0,0,.35)}.carousel-controls{display:flex;align-items:center;justify-content:center;gap:18px;margin-top:24px}.carousel-button,.carousel-dots button{border:0;cursor:pointer}.carousel-button{width:48px;height:48px;border-radius:50%;background:#ffd700;color:#111;font-size:1.4rem}.carousel-dots{display:flex;gap:9px}.carousel-dots button{width:12px;height:12px;border-radius:50%;background:rgba(255,255,255,.45)}.carousel-dots button.active{background:#ffd700}

.home-articles{padding:75px 24px;text-align:center;color:#fff;background:rgba(0,0,0,.3)}.home-articles-heading{max-width:780px;margin:0 auto 34px}.home-articles-heading h2{font-size:2.6rem;margin:8px 0;text-shadow:2px 2px 5px rgba(0,0,0,.55)}.article-preview-grid{max-width:1150px;margin:0 auto 32px;display:grid;grid-template-columns:repeat(3,1fr);gap:24px;text-align:left}.article-preview-card{display:block;background:rgba(0,0,0,.7);border-radius:14px;overflow:hidden;box-shadow:0 8px 24px rgba(0,0,0,.3);transition:transform .25s ease,box-shadow .25s ease}.article-preview-card:hover{transform:translateY(-7px);box-shadow:0 14px 30px rgba(0,0,0,.4)}.article-preview-card img{width:100%;height:220px;object-fit:cover;display:block}.article-preview-card div{padding:22px}.article-preview-card span{color:#ffd700;font-weight:700;font-size:.9rem}.article-preview-card h3{margin:10px 0;color:#fff;font-size:1.15rem;line-height:1.35}.article-preview-card p{color:#eee;line-height:1.55;margin:0}.home-articles-button{margin-top:5px}
.blog-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(280px,1fr));gap:24px;max-width:1050px;margin:auto}.blog-card{margin:0}.blog-card a:not(.project-button){color:#ffd700;text-decoration:none}.blog-body{white-space:pre-wrap;line-height:1.8;margin:28px 0}.blog-lead{font-size:1.15rem}.admin-page{max-width:950px;margin:auto}.admin-form label{display:block;margin:18px 0;font-weight:600}.admin-form input:not([type=checkbox]),.admin-form textarea{display:block;width:100%;box-sizing:border-box;margin-top:8px;padding:12px;border:1px solid #ddd;border-radius:6px;font:inherit}.admin-row{display:flex;align-items:center;gap:16px;margin-bottom:18px}.admin-row>div{flex:1}.admin-row form,.admin-heading form{display:inline}.admin-heading{display:flex;align-items:center;gap:14px;margin-bottom:28px}.admin-heading h1{flex:1}.danger{background:#ea4335!important;color:#fff!important}
.pdf-reader{margin-top:20px;background:#fff;border-radius:10px;overflow:hidden}.pdf-reader iframe{display:block;width:100%;height:75vh;min-height:520px;border:0}
.research-section-heading{max-width:900px;margin:10px auto 28px;text-align:center;color:#fff}.research-section-heading span{display:inline-block;padding:6px 12px;border-radius:999px;background:rgba(0,0,0,.55);color:#ffd700;font-size:.82rem;font-weight:700;text-transform:uppercase;letter-spacing:.08em}.research-section-heading h2{font-size:2.25rem;margin:12px 0 8px;text-shadow:2px 2px 5px rgba(0,0,0,.55)}.research-section-heading p{margin:0 auto;max-width:720px;line-height:1.65}.research-section-heading.secondary{margin-top:70px}.featured-research-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:28px;max-width:1180px;margin:0 auto}.featured-research-card{position:relative;border:2px solid rgba(255,215,0,.55);box-shadow:0 12px 32px rgba(0,0,0,.35)}.featured-research-card h2{font-size:1.55rem}.featured-research-card h3{color:#ffd700;margin:24px 0 10px}.featured-label{display:inline-block;margin-bottom:12px;color:#ffd700;font-weight:700;font-size:.82rem;letter-spacing:.06em;text-transform:uppercase}.research-topics-grid .project-card{min-height:220px}
@media(max-width:900px){.article-preview-grid{grid-template-columns:1fr}.article-preview-card{max-width:650px;width:100%;margin:auto}.article-slide-layout{grid-template-columns:1fr}.article-slide-layout img{height:280px}.featured-research-grid{grid-template-columns:1fr}.research-section-heading h2{font-size:1.9rem}}
@media(max-width:768px){.articles-page,.blog-page,.admin-page,.blog-article{padding:95px 14px 55px}.article-carousel,.blog-card,.admin-form,.admin-row,.blog-article{padding:22px}.article-slide{min-height:560px}.admin-row,.admin-heading{align-items:flex-start;flex-wrap:wrap}.admin-heading h1{flex-basis:100%}.pdf-reader iframe{height:65vh;min-height:430px}.home-articles{padding:60px 14px}.article-preview-card img{height:200px}}
