/* ===== Reset & Base ===== */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    border-color: hsl(220 15% 18%);
}

:root {
    --bg: hsl(220 20% 7%);
    --fg: hsl(210 20% 90%);
    --card: hsl(220 18% 10%);
    --card-fg: hsl(210 20% 90%);
    --primary: hsl(307.38deg 72% 55%);
    --primary-fg: hsl(0 0% 100%);
    --secondary: hsl(220 15% 15%);
    --secondary-fg: hsl(210 20% 85%);
    --muted: hsl(215 15% 55%);
    --accent: hsl(168 70% 45%);
    --accent-fg: hsl(0 0% 100%);
    --border: hsl(220 15% 18%);
    --whitetxt: hsl(0 0% 100%);
    --radius: 0.75rem;
}

body {
    background: var(--bg);
    color: var(--fg);
    font-family: 'Space Grotesk', system-ui, sans-serif;
    -webkit-font-smoothing: antialiased;
    line-height: 1.6;
    overflow-x: hidden;
    letter-spacing: 0.1em;
}

.stars {
    position: fixed;
    inset: 0;
    background-image: radial-gradient(2px 2px at 20px 30px, rgba(255, 255, 255, .8), transparent), radial-gradient(2px 2px at 40px 70px, rgba(255, 255, 255, .5), transparent), radial-gradient(1px 1px at 90px 40px, rgba(255, 255, 255, .6), transparent), radial-gradient(2px 2px at 130px 80px, rgba(255, 255, 255, .4), transparent), radial-gradient(1px 1px at 160px 120px, rgba(255, 255, 255, .7), transparent), radial-gradient(2px 2px at 200px 60px, rgba(0, 229, 204, .6), transparent), radial-gradient(1px 1px at 250px 150px, rgba(255, 255, 255, .5), transparent), radial-gradient(2px 2px at 300px 40px, rgba(255, 77, 77, .4), transparent);
    background-size: 350px 200px;
    animation: twinkle 8s ease-in-out infinite alternate;
    pointer-events: none;
    z-index: 0;
}

code,
pre {
    font-family: 'JetBrains Mono', monospace;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    display: block;
    max-width: 100%;
}

.container {
    max-width: 980px;
    margin: 0 auto;
    padding: 0 1rem;
}

.nebula-bg {
    position: fixed;
    inset: 0;
    background: radial-gradient(ellipse 80% 50% at 20% 20%, rgba(255, 77, 77, .12), transparent 50%), radial-gradient(ellipse 60% 60% at 80% 30%, rgba(0, 229, 204, .08), transparent 50%), radial-gradient(ellipse 90% 70% at 50% 90%, rgba(255, 77, 77, .06), transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.floating-nav {
    position: fixed;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    right: auto;
    margin: 0;
    width: 760px;
    z-index: 9999;
    display: flex;
    gap: 1.2rem;
    background: rgb(0 0 0 / 15%);
    box-shadow: 0 4px 32px 0 #0a1a2a33;
    border-radius: 1.5em;
    padding: 0.2em 2.2em;
    backdrop-filter: blur(12px) saturate(1.2);
    border: 1px solid rgba(110, 193, 255, 0.13);
    align-items: center;
    font-family: 'JetBrains Mono', 'Consolas', 'Menlo', 'monospace', 'PingFang SC', 'Microsoft YaHei', sans-serif;
    font-size: 1.08rem;
    transition: background 0.2s, box-shadow 0.2s;
    animation: nav-fade-in 0.8s cubic-bezier(.4, 1.6, .6, 1) 0.2s both;
}
.floating-nav a {
    color: #ffffff;
    text-decoration: none;
    padding: 0.3em 1.1em;
    border-radius: 2em;
    transition: background 0.18s, color 0.18s;
    font-weight: 300;
    letter-spacing: 0.2em;
}
.floating-nav a:hover {
    background: linear-gradient(90deg,#6ec1ff22 0%,#3a8dde22 100%);
    color: #fff;
    opacity: 1;
}
.nav-toggle {
  display: none;
  background: none;
  border: none;
  outline: none;
}
.floating-nav .nav-links {
    margin: 0 auto
}

@media (max-width: 700px) {
  .floating-nav {
    width: 98vw;
    position: fixed;
    top: 1rem;
    right: 1rem;
    margin: 0;
    padding: 0.2em 0.2em;
    border-radius: 1.2em;
    justify-content: flex-start;
    font-size: 0.97rem;
    gap: 0.3rem;
    backdrop-filter: none;
    background: none;
    box-shadow: none;
    border: 0 none;
  }
  .floating-nav a { padding: 0.2em 0.7em; }
  .floating-nav .nav-links {
    position: absolute;
    top: 3.2em;
    left: 0;
    right: 0;
    background: rgba(22,34,48,0.98);
    border-radius: 1.5em;
    box-shadow: 0 8px 32px 0 #0a1a2a33;
    flex-direction: column;
    gap: 0.2rem;
    padding: 0.7em 0.5em 0.7em 0.5em;
    display: none;
    z-index: 9999;
    /* animation: nav-fade-in 0.5s; */
  }
  .floating-nav .nav-links.open {
    display: flex;
  }
  .nav-toggle {
    display: block;
    background: rgba(22,34,48,0.7);
    border: 1.5px solid rgba(110,193,255,0.13);
  }
}

@keyframes nav-fade-in {
  from { opacity: 0; transform: translateX(-50%) translateY(-30px); }
  to { opacity: 1; transform: translateX(-50%) translateY(0); }
}

@keyframes twinkle {
    0% {
        opacity: 0.6;
    }
    100% {
        opacity: 1;
    }
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* ===== Content Wrapper ===== */

.content {
    position: relative;
    z-index: 10;
}

/* ===== Hero ===== */

.hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 4rem 1rem 3rem;
}

.hero-emoji {
    font-size: 6rem;
    margin-bottom: 1.5rem;
    user-select: none;
}

.hero h1 {
    font-size: clamp(2rem, 6vw, 2.75rem);
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(to bottom, hsl(204.4deg 86.72% 52.75%), hsl(274.15deg 90.97% 58.06%));
    /* background: linear-gradient(to bottom, hsl(307.38deg 72% 55%), hsl(224.31deg 72% 55% / 60%)); */
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.highlight {
    background: linear-gradient(to bottom, hsl(307.38deg 72% 55%), hsl(224.31deg 72% 55% / 60%));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.highlight2 {
    background: linear-gradient(to bottom, hsl(105.23deg 90.95% 49.48%), hsl(177.23deg 100% 52.59% / 60%));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.highlight3 {
    background: linear-gradient(to bottom, hsl(105.23deg 90.95% 49.48%), hsl(177.23deg 100% 52.59% / 60%));
    /* background: linear-gradient(to bottom, hsl(324deg 100% 54.74%), hsl(60.92deg 97.25% 71.42% / 60%));  */
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-tagline {
    font-size: clamp(1.25rem, 1.25vw, 1.5rem);
    font-weight: 600;
    letter-spacing: 0.1em;
    color: var(--whitetxt);
    margin-bottom: 1.5rem;
}

.hero-desc {
    color: var(--muted);
    max-width: 20rem;
    font-size: 1rem;
}

/* ===== Latest Post Banner ===== */

.banner {
    display: flex;
    justify-content: center;
    padding: 0 1rem 2.5rem;
}

.banner a {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 0.5rem;
    border-radius: 10px;
    border: 1px solid var(--border);
    background: hsl(220 15% 15% / 0.5);
    transition: background 0.2s;
    font-size: 1rem;
}

.banner a:hover {
    background: var(--secondary);
}

.banner-badge {
    text-wrap: nowrap;
    padding: 0.125rem 0.5rem;
    border-radius: 10px;
    background: var(--primary);
    color: var(--primary-fg);
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.banner-arrow {
    color: var(--muted);
    transition: color 0.2s;
}

.banner a:hover .banner-arrow {
    color: var(--fg);
}

.latest-post-link {
    color: var(--accent);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

/* ===== Section Heading ===== */

.section-heading {
    font-size: clamp(1.5rem, 3vw, 1.875rem);
    font-weight: 700;
    margin-bottom: 2rem;
}

.claw-accent {
    color: var(--accent);
    font-weight: 700;
}

/* ===== Testimonials ===== */

.testimonials {
    padding-bottom: 4rem;
}

.testimonials-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.testimonials-header a {
    font-size: 0.875rem;
    color: var(--accent);
}

.testimonials-header a:hover {
    text-decoration: underline;
}

.marquee-track {
    overflow: hidden;
    margin-bottom: 1rem;
}

.marquee-inner {
    display: flex;
    gap: 1rem;
    width: max-content;
    animation: marquee 60s linear infinite;
}

.marquee-inner:hover {
    animation-play-state: paused;
}

.marquee-reverse {
    animation-direction: reverse;
    animation-duration: 70s;
}

.testimonial-card {
    flex-shrink: 0;
    width: 320px;
    padding: 1.25rem;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    background: var(--card);
    transition: background 0.2s;
    display: block;
}

.testimonial-card:hover {
    background: hsl(220 15% 15% / 0.5);
}

.testimonial-meta {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.testimonial-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--secondary);
}

.testimonial-handle {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--accent);
}

.testimonial-text {
    font-size: 0.875rem;
    color: hsl(210 20% 90% / 0.8);
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* ===== Quick Start ===== */

.quickstart {
    padding-bottom: 5rem;
    margin-top: 50px
}

.terminal {
    max-width: 73rem;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
}

.terminal-header {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 0.75rem 1rem;
    border-bottom: 1px solid var(--border);
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.dot-red {
    background: #ff5f57;
}

.dot-yellow {
    background: #ffbd2e;
}

.dot-green {
    background: #28c840;
}

.terminal-tabs {
    display: flex;
    gap: 0.25rem;
    margin-left: 1rem;
}

.terminal-tab {
    padding: 0.25rem 0.75rem;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 500;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--muted);
    transition: color 0.2s, background 0.2s;
    font-family: inherit;
}

.terminal-tab:hover {
    color: var(--fg);
}

.terminal-tab.active {
    background: hsl(168 70% 45% / 0.2);
    color: var(--accent);
}

.terminal-meta {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.terminal-meta span {
    font-size: 0.75rem;
    color: var(--muted);
}

.terminal-meta .beta-badge {
    padding: 0.125rem 0.5rem;
    border-radius: 4px;
    border: 1px solid var(--border);
}

.terminal-body {
    padding: 1.25rem;
    font-size: 0.875rem;
}

.terminal-body .comment {
    color: var(--muted);
}

.terminal-body .prompt {
    color: var(--primary);
}

.terminal-body .cmd {
    color: var(--fg);
}

.terminal-line {
    margin-bottom: 0.75rem;
}

.terminal-line:last-child {
    margin-bottom: 0;
}

.quickstart-note {
    font-size: 0.875rem;
    color: var(--muted);
    margin-top: 1rem;
    max-width: 42rem;
}

/* ===== Features ===== */

.features {
    padding-bottom: 5rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 1rem;
}

@media (min-width: 768px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.feature-card {
    padding: 1.5rem;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    background: var(--card);
    transition: background 0.2s;
    cursor: pointer;
}

.feature-card:hover {
    background: hsl(220 15% 15% / 0.4);
}

.feature-icon {
    color: var(--accent);
    margin-bottom: 1rem;
    width: 24px;
    height: 24px;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1);
}

.feature-card h3 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.feature-card p {
    font-size: 0.875rem;
    color: var(--muted);
    line-height: 1.6;
}

/* ===== Integrations ===== */

.integrations {
    padding-bottom: 5rem;
}

.integrations-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.integration-tag {
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    border: 1px solid var(--border);
    background: hsl(220 15% 15% / 0.5);
    font-size: 0.875rem;
    color: hsl(210 20% 90% / 0.8);
    transition: background 0.2s, color 0.2s;
    cursor: default;
}

.integration-tag:hover {
    background: var(--secondary);
    color: var(--fg);
}

.integrations-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    font-size: 0.875rem;
}

.integrations-links a {
    color: var(--accent);
}

.integrations-links a:hover {
    text-decoration: underline;
}

.integrations-links .sep {
    color: var(--muted);
}

/* ===== Press ===== */

.press {
    padding-bottom: 5rem;
}

.press-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

.index-card {
    position: relative;
    width: 100%;
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
    align-items: flex-start;
    align-content: flex-start;
    gap: 0.5rem;
    text-align: left;
    margin-top: 2rem;
    color: var(--whitetxt);
    font-size: 1rem;
    line-height: 1.5;
    list-style-type: none;
}

.index-card li {
    width: 100%;
    height: 10rem;
    margin-bottom: 1rem;
    padding: 1rem;
    position: relative;
    z-index: 0;
    inset: 0;
    border: 0;
}

.card-title {
    font-weight: 600;
    color: var(--fg);
    display: block;
    font-size: 1.5rem;
}

.card-subtitle {
    color: var(--accent);
    display: block;
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

.apple-intelligence-glow {
    --igradient: linear-gradient(to bottom right, #0894ff 0%, #c959dd 34%, #ff2e54 68%, #ff9004);
    position: absolute;
    z-index: 0;
    inset: 0;
    border: 0;
    filter: blur(1px);
}

.apple-intelligence-glow::after {
    --bg-size: calc(100% + 14px);
    content: "";
    pointer-events: none;
    position: absolute;
    inset: 0;
    background: var(--igradient) 50% / var(--bg-size) var(--bg-size);
    border-radius: 20px;
    border: 3px solid rgba(0, 0, 0, 0);
    mask: linear-gradient(hsla(0, 0%, 100%, 0), hsla(0, 0%, 100%, 0)), linear-gradient(hsl(0, 0%, 100%), hsl(0, 0%, 100%));
    mask-clip: padding-box, border-box;
    mask-composite: intersect;
}

.card-txt {
    z-index: 99;
    position: relative;
    text-align: center;
}

.apple-intelligence-glow-2 {
    filter: blur(7px);
}

.apple-intelligence-glow-2::after {
    border: 8px solid rgba(0, 0, 0, 0);
}

#mobile-hero {
    display: flex;
}

#desktop-hero {
    display: none;
}

@media (min-width: 768px) {
    #mobile-hero {
        display: none;
    }
    #desktop-hero {
        display: flex;
    }
    .press-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .latest-post-link {
        font-size: 1.25rem;
        letter-spacing: 0.08em;
    }
    .hero-tagline {
        font-size: clamp(1.5rem, 1.5vw, 1.75rem);
        font-weight: 600;
    }
    .hero-desc {
        max-width: 40rem;
        font-size: 1.05rem;
    }
    .index-card {
        font-size: 1rem;
    }
    .index-card li {
        width: 40%;
        height: 10rem;
        margin-bottom: 1rem;
        padding: 1rem;
        position: relative;
        z-index: 0;
        inset: 0;
        border: 0;
    }
    .card-title {
        font-size: 1.5rem;
    }
    .card-subtitle {
        font-size: 1.3rem;
    }
}

.press-card {
    display: block;
    padding: 1.5rem;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    background: var(--card);
    transition: background 0.2s;
}

.press-card:hover {
    background: hsl(220 15% 15% / 0.4);
}

.press-outlet {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--accent);
    margin-bottom: 0.75rem;
}

.press-quote {
    font-weight: 500;
    margin-bottom: 0.75rem;
    line-height: 1.6;
}

.press-author {
    font-size: 0.875rem;
    color: var(--muted);
}

/* ===== Newsletter ===== */

.newsletter {
    padding-bottom: 5rem;
}

.newsletter p {
    font-size: 0.875rem;
    color: var(--muted);
    margin-bottom: 1.5rem;
    max-width: 28rem;
}

.newsletter-form {
    display: flex;
    gap: 0.75rem;
    max-width: 28rem;
}

.newsletter-input {
    flex: 1;
    padding: 0.625rem 1rem;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    background: var(--card);
    color: var(--fg);
    font-size: 0.875rem;
    font-family: inherit;
    outline: none;
    transition: box-shadow 0.2s;
}

.newsletter-input::placeholder {
    color: var(--muted);
}

.newsletter-input:focus {
    box-shadow: 0 0 0 2px hsl(168 70% 45% / 0.5);
}

.newsletter-btn {
    padding: 0.625rem 1.5rem;
    border-radius: var(--radius);
    background: var(--accent);
    color: var(--accent-fg);
    font-weight: 600;
    font-size: 0.875rem;
    border: none;
    cursor: pointer;
    font-family: inherit;
    transition: opacity 0.2s;
}

.newsletter-btn:hover {
    opacity: 0.9;
}

/* ===== Sponsors ===== */

.sponsors {
    padding-bottom: 5rem;
}

.sponsors-list {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    align-items: center;
}

.sponsor-link {
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    background: var(--card);
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--muted);
    transition: background 0.2s, color 0.2s;
}

.sponsor-link:hover {
    background: hsl(220 15% 15% / 0.4);
    color: var(--fg);
}

/* ===== Footer ===== */

.site-footer {
    border-top: 1px solid var(--border);
    padding: 2rem 0;
}

.footer-inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--muted);
}

.footer-links {
    display: flex;
    gap: 1.5rem;
    font-size: 0.875rem;
}

.footer-links a {
    color: var(--muted);
    transition: color 0.2s;
}

.footer-links a:hover {
    color: var(--fg);
}

/* ===== Scrollbar ===== */

::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: transparent;
}

::-webkit-scrollbar-thumb {
    background: var(--border);
    border-radius: 3px;
}

/* ===== SVG Icons (inline) ===== */

.icon {
    width: 24px;
    height: 24px;
    stroke: currentColor;
    stroke-width: 2;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* 试岗弹窗样式 */

#free-trial-modal {
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

#free-trial-modal .modal-mask {
    position: absolute;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.55);
}

#free-trial-modal .modal-content {
    position: relative;
    z-index: 2;
    background: var(--card);
    color: var(--fg);
    border-radius: 1.2rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
    padding: 2.2rem 2rem 1.5rem;
    min-width: 320px;
    max-width: 90vw;
    text-align: center;
}

#free-trial-modal .modal-title {
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 0.7rem;
}

#free-trial-modal .modal-desc {
    font-size: 1rem;
    margin-bottom: 1.2rem;
    color: var(--muted);
}

#free-trial-modal .modal-tel {
    color: var(--accent);
    font-weight: 600;
    text-decoration: underline;
}

#free-trial-modal .modal-qr {
    margin: 0 auto 0.7rem;
    text-align: center;
}

#free-trial-modal .modal-qr-tip {
    font-size: 0.85rem;
    color: var(--muted);
    margin-top: 0.3rem;
}

#free-trial-modal .modal-close {
    position: absolute;
    right: 1.1rem;
    top: 1.1rem;
    background: none;
    border: none;
    color: var(--muted);
    font-size: 1.5rem;
    cursor: pointer;
}

#free-trial-modal .modal-copy-btn {
    margin-top: 0.7rem;
    padding: 0.5rem 1.2rem;
    border-radius: 0.6rem;
    border: none;
    background: var(--accent);
    color: var(--accent-fg);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: opacity 0.2s;
}

#free-trial-modal .modal-copy-btn:hover {
    opacity: 0.85;
}

@media (max-width: 480px) {
    #free-trial-modal .modal-content {
        min-width: 90vw;
        padding: 1.2rem 0.5rem 1rem;
    }
}

.blog-section {
    margin-top: 2.5rem;
    margin-bottom: 3rem;
}

.blog-list {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: space-between;
}

.blog-card {
    background: linear-gradient(135deg, #2e257f 50%, #812a7d 100%);
    border-radius: 1.1rem;
    box-shadow: 0 4px 24px 0 rgba(30, 60, 120, 0.18);
    overflow: hidden;
    width: 30%;
    display: flex;
    flex-direction: column;
    cursor: pointer;
    border: 1.5px solid #1e355a;
    transition: transform 0.18s, box-shadow 0.18s;
}

.blog-card:hover {
    transform: translateY(-4px) scale(1.025);
    box-shadow: 0 8px 32px 0 rgba(30, 60, 120, 0.28);
}

.blog-card-img {
    width: 100%;
    height: 15rem;
    object-fit: cover;
    background: #12203a;
}

.blog-card-body {
    padding: 1.1rem 1.2rem 1.2rem 1.2rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.blog-card-title {
    font-size: 0.9rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.blog-card-summary {
    color: #b3c7e6;
    font-size: 0.8rem;
    margin-bottom: 1.1rem;
    flex: 1;
}

.blog-card-date {
    color: #7eb6ff;
    font-size: 0.92rem;
    margin-top: auto;
    letter-spacing: 0.04em;
}

.news-section {
    margin-top: 1rem;
    margin-bottom: 3rem;
}

.news-list {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: space-between;
    width: 800px;
    max-width: 100%;
    margin: 0 auto;
    padding: 3rem 0;
    background-color: #ffffff;
    color: #000;
    border-radius: 1rem;
}

.news-card{
    overflow: hidden;
    width: 100%;
    display: flex;
    flex-direction: column;
    cursor: pointer;
    padding: 1rem;
    transition: transform 0.18s
}

.news-card:hover {
    transform: translateY(-3px);
    background-color: #def1ff;
}

.news-card-title{
    font-size: 1rem;
    font-weight: 600;
    color: #000000;
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.news-card-date{
    color: #555555;
    font-size: 0.85rem;
    margin-top: auto;
}

@media (max-width: 700px) {
    .blog-list {
        flex-direction: column;
        gap: 1.2rem;
    }
    .blog-card {
        width: 100%;
        min-width: 0;
    }
    .blog-section {
        margin-top: 1.2rem;
        margin-bottom: 1.2rem;
    }
    .blog-card-img {
        height: 16rem;
    }
    .blog-card-body {
        padding: 0.9rem 0.7rem 1rem 0.7rem;
    }
    .blog-card-title {
        font-size: 1.01rem;
    }
    .blog-card-summary {
        font-size: 0.93rem;
    }
    .blog-card-date {
        font-size: 0.85rem;
    }
    .news-list {
        width: 98%;
    }
}