/* Galaxy Chains — home page (brand vars in galaxy-brand.css) */
.galaxy-section { padding: 90px 0; }
.galaxy-section--gray { background: var(--galaxy-gray); }
.galaxy-section--dark {
    background: linear-gradient(135deg, var(--galaxy-blue) 0%, #0f1a33 100%);
    color: #fff;
}
.galaxy-section--dark .section-title h1,
.galaxy-section--dark .section-title h2,
.galaxy-section--dark .section-title h3 { color: #fff !important; }
.galaxy-section--dark .section-title h3::before { background: var(--galaxy-red); }

/* Full-viewport YouTube hero banner */
.galaxy-hero--video {
    height: 100vh;
    min-height: 100vh;
    max-height: 100vh;
    padding: 0 !important;
    margin-top: -118px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: #0f1a33;
}
.galaxy-hero--video .hero-bg-video {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}
.galaxy-hero--video .hero-bg-video iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100vw;
    height: 56.25vw;
    min-height: 100%;
    min-width: 177.78vh;
    transform: translate(-50%, -50%);
    border: 0;
    pointer-events: none;
}
.galaxy-hero--video::before {
    z-index: 1;
    background: linear-gradient(
        180deg,
        rgba(15, 26, 51, 0.55) 0%,
        rgba(15, 26, 51, 0.72) 50%,
        rgba(15, 26, 51, 0.85) 100%
    );
}
.galaxy-hero--video .container {
    position: relative;
    z-index: 2;
    width: 100%;
    padding-top: 118px;
}
@media (max-width: 991px) {
    .galaxy-hero--video {
        margin-top: 0;
        height: 100vh;
        min-height: 100svh;
        max-height: 100svh;
    }
    .galaxy-hero--video .container {
        padding-top: 24px;
    }
}

.galaxy-hero .hero-content .section-title h1 { font-size: clamp(2rem, 4.5vw, 3.25rem); line-height: 1.15; }
.galaxy-hero .hero-badge {
    display: inline-block;
    background: var(--galaxy-red);
    color: #fff;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 4px;
    margin-bottom: 16px;
}
.galaxy-hero .hero-content .section-title p { max-width: 720px; font-size: 1.05rem; }

.galaxy-hero .hero-btn {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
}

.galaxy-hero .hero-btn .btn-default {
    white-space: normal;
    text-align: center;
    line-height: 1.3;
}

@media (max-width: 575px) {
    .galaxy-hero .hero-btn .btn-default {
        width: 100%;
        max-width: 340px;
    }
}

/* About — key statistics (professional) */
.galaxy-stats-wrap {
    margin-top: 48px;
    padding: 32px 28px;
    background: linear-gradient(180deg, #f7f9fc 0%, #ffffff 100%);
    border: 1px solid var(--galaxy-border);
    border-radius: 20px;
    box-shadow: 0 8px 40px rgba(26, 45, 90, 0.06);
}

.galaxy-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

@media (max-width: 991px) {
    .galaxy-stats { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 575px) {
    .galaxy-stats { grid-template-columns: 1fr; }
    .galaxy-stats-wrap { padding: 24px 18px; }
}

.galaxy-stat-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 18px;
    background: #fff;
    border: 1px solid #e6ebf2;
    border-radius: 14px;
    text-align: left;
    transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.galaxy-stat-card:hover {
    border-color: rgba(26, 45, 90, 0.18);
    box-shadow: 0 10px 28px rgba(26, 45, 90, 0.1);
    transform: translateY(-3px);
}

.galaxy-stat-card__icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    font-size: 1.15rem;
    color: #fff;
    background: linear-gradient(145deg, var(--galaxy-blue) 0%, var(--galaxy-blue-light) 100%);
    box-shadow: 0 4px 14px rgba(26, 45, 90, 0.2);
}

.galaxy-stat-card__content {
    min-width: 0;
    flex: 1;
}

.galaxy-stat-card .stat-value {
    font-size: clamp(1.5rem, 2.2vw, 1.85rem);
    font-weight: 700;
    color: var(--galaxy-red);
    line-height: 1.15;
    margin: 0 0 4px;
    letter-spacing: -0.02em;
}

.galaxy-stat-card .stat-label {
    margin: 0;
    font-size: 0.78rem;
    font-weight: 600;
    line-height: 1.4;
    color: #5c677d;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Products — featured category cards */
#products.galaxy-section--gray {
    background: linear-gradient(180deg, #e8eef6 0%, #f4f6f8 45%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

#products.galaxy-section--gray::before {
    content: '';
    position: absolute;
    top: -120px;
    right: -80px;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: rgba(196, 30, 58, 0.06);
    pointer-events: none;
}

.galaxy-product-categories {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    margin-top: 44px;
    position: relative;
    z-index: 1;
}

@media (max-width: 991px) {
    .galaxy-product-categories { grid-template-columns: 1fr; }
}

.galaxy-product-cat {
    display: flex;
    flex-direction: column;
    height: 100%;
    background: #fff;
    border: 1px solid rgba(26, 45, 90, 0.1);
    border-radius: 18px;
    overflow: hidden;
    color: inherit;
    box-shadow: 0 14px 48px rgba(26, 45, 90, 0.1);
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.galaxy-product-cat:hover {
    transform: translateY(-10px);
    border-color: rgba(196, 30, 58, 0.35);
    box-shadow: 0 28px 60px rgba(26, 45, 90, 0.18);
}

.galaxy-product-cat__media {
    display: block;
    text-decoration: none;
    color: inherit;
}

.galaxy-product-cat__media {
    position: relative;
    height: 240px;
    overflow: hidden;
}

.galaxy-product-cat__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.55s ease;
}

.galaxy-product-cat:hover .galaxy-product-cat__media img {
    transform: scale(1.08);
}

.galaxy-product-cat__badge {
    position: absolute;
    top: 18px;
    left: 18px;
    z-index: 2;
    background: var(--galaxy-red);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 6px 12px;
    border-radius: 4px;
}

.galaxy-product-cat__media-icon {
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 2;
    transform: translate(-50%, -50%);
    width: 88px;
    height: 88px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 2.25rem;
    color: #fff;
    background: rgba(255, 255, 255, 0.12);
    border: 2px solid rgba(255, 255, 255, 0.35);
    backdrop-filter: blur(4px);
    transition: transform 0.35s ease, background 0.35s ease;
}

.galaxy-product-cat:hover .galaxy-product-cat__media-icon {
    transform: translate(-50%, -50%) scale(1.06);
    background: rgba(196, 30, 58, 0.85);
    border-color: var(--galaxy-red);
}

.galaxy-product-cat__body {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 26px 24px 24px;
    background: linear-gradient(180deg, #fff 0%, #f8fafc 100%);
}

.galaxy-product-cat__body h3 {
    font-size: 1.5rem;
    color: var(--galaxy-blue);
    margin: 0 0 8px;
    padding: 0 0 12px;
    border-bottom: none;
    position: relative;
}

.galaxy-product-cat__body h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 48px;
    height: 3px;
    background: var(--galaxy-red);
    border-radius: 2px;
}

.galaxy-product-cat__intro {
    font-size: 0.9rem;
    line-height: 1.55;
    color: #5c677d;
    margin: 0 0 20px;
}

/* Product tiles — vertical cards with icon visual */
.galaxy-product-cat__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin: 0 0 22px;
    flex: 1;
}

.galaxy-product-tile {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(26, 45, 90, 0.08);
    box-shadow: 0 4px 16px rgba(26, 45, 90, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.galaxy-product-tile:hover {
    transform: translateY(-5px);
    border-color: rgba(196, 30, 58, 0.4);
    box-shadow: 0 12px 28px rgba(26, 45, 90, 0.14);
    color: inherit;
}

.galaxy-product-tile__visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    aspect-ratio: 1 / 0.72;
    overflow: hidden;
}

.galaxy-product-tile__visual img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.45s ease;
}

.galaxy-product-tile:hover .galaxy-product-tile__visual img {
    transform: scale(1.08);
}

.galaxy-product-tile__visual i {
    position: relative;
    z-index: 1;
    font-size: 1.75rem;
    color: rgba(255, 255, 255, 0.92);
    transition: transform 0.35s ease, color 0.35s ease;
}

.galaxy-product-tile:hover .galaxy-product-tile__visual i {
    transform: scale(1.12);
    color: #fff;
}

.galaxy-product-tile__info {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    padding: 10px 12px 11px;
    background: #fff;
}

.galaxy-product-tile__name {
    font-size: 0.78rem;
    font-weight: 700;
    line-height: 1.25;
    color: var(--galaxy-blue);
    transition: color 0.25s ease;
}

.galaxy-product-tile:hover .galaxy-product-tile__name {
    color: var(--galaxy-red);
}

.galaxy-product-tile__go {
    flex-shrink: 0;
    width: 26px;
    height: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(26, 45, 90, 0.08);
    color: var(--galaxy-blue);
    font-size: 0.65rem;
    transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.galaxy-product-tile:hover .galaxy-product-tile__go {
    background: var(--galaxy-red);
    color: #fff;
    transform: translateX(2px);
}

.galaxy-product-cat__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: auto;
    padding: 12px 22px;
    font-size: 0.88rem;
    font-weight: 700;
    color: #fff;
    background: var(--galaxy-red);
    border-radius: 8px;
    text-decoration: none;
    transition: background 0.25s ease, gap 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
    box-shadow: 0 6px 20px rgba(196, 30, 58, 0.3);
}

.galaxy-product-cat__cta:hover {
    background: var(--galaxy-blue);
    color: #fff;
    gap: 14px;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(26, 45, 90, 0.25);
}

.galaxy-product-cat__cta i {
    font-size: 0.8rem;
    transition: transform 0.25s ease;
}

.galaxy-product-cat__cta:hover i {
    transform: translateX(3px);
}

@media (max-width: 1199px) {
    .galaxy-product-cat__grid {
        grid-template-columns: repeat(2, 1fr);
    }

}

@media (max-width: 575px) {
    .galaxy-product-cat__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .galaxy-product-tile__visual i {
        font-size: 1.45rem;
    }

    .galaxy-product-tile__name {
        font-size: 0.72rem;
    }
}

.galaxy-industries-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 40px;
}

@media (max-width: 1199px) {
    .galaxy-industries-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 767px) {
    .galaxy-industries-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
}

@media (max-width: 479px) {
    .galaxy-industries-grid { grid-template-columns: 1fr; }
}

.galaxy-industry-card {
    display: block;
    background: #fff;
    border: 1px solid var(--galaxy-border);
    border-radius: 14px;
    overflow: hidden;
    text-align: center;
    text-decoration: none;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.galaxy-industry-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 36px rgba(26, 45, 90, 0.12);
    border-color: var(--galaxy-blue-light);
}

.galaxy-industry-card__img {
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: var(--galaxy-gray);
}

.galaxy-industry-card__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.35s ease;
}

.galaxy-industry-card:hover .galaxy-industry-card__img img {
    transform: scale(1.06);
}

.galaxy-industry-card__title {
    margin: 0;
    padding: 14px 12px 16px;
    font-size: 0.95rem;
    font-weight: 600;
    line-height: 1.35;
    color: var(--galaxy-blue);
    transition: color 0.2s ease;
}

.galaxy-industry-card:hover .galaxy-industry-card__title {
    color: var(--galaxy-red);
}

.galaxy-clients { margin-top: 40px; }
.galaxy-client-group {
    background: #fff;
    border: 1px solid var(--galaxy-border);
    border-radius: 12px;
    padding: 24px 28px;
    margin-bottom: 20px;
}
.galaxy-client-group h4 {
    font-size: 1rem;
    color: var(--galaxy-red);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 14px;
}
.galaxy-client-scroll {
    overflow: hidden;
    margin: 0 -4px;
    padding: 4px 0;
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
    mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}

.galaxy-client-scroll__track {
    display: flex;
    align-items: center;
    gap: 28px;
    width: max-content;
    animation: galaxy-client-scroll 35s linear infinite;
}

.galaxy-client-group:hover .galaxy-client-scroll__track {
    animation-play-state: paused;
}

.galaxy-client-group:nth-child(1) .galaxy-client-scroll__track { animation-duration: 32s; }
.galaxy-client-group:nth-child(2) .galaxy-client-scroll__track { animation-duration: 28s; }
.galaxy-client-group:nth-child(3) .galaxy-client-scroll__track { animation-duration: 36s; }
.galaxy-client-group:nth-child(4) .galaxy-client-scroll__track { animation-duration: 30s; }
.galaxy-client-group:nth-child(5) .galaxy-client-scroll__track { animation-duration: 40s; }

@keyframes galaxy-client-scroll {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

.galaxy-client-logo {
    flex: 0 0 auto;
    width: 140px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--galaxy-gray);
    border: 1px solid var(--galaxy-border);
    border-radius: 10px;
    padding: 12px 16px;
}

.galaxy-client-logo img {
    max-width: 100%;
    max-height: 48px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: grayscale(20%);
    opacity: 0.9;
    transition: filter 0.2s ease, opacity 0.2s ease;
}

.galaxy-client-logo:hover img {
    filter: none;
    opacity: 1;
}

.galaxy-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 40px;
}
@media (max-width: 991px) { .galaxy-features { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 575px) { .galaxy-features { grid-template-columns: 1fr; } }

.galaxy-feature-box {
    background: #fff;
    border: 1px solid var(--galaxy-border);
    border-radius: 12px;
    padding: 28px 24px;
    height: 100%;
    border-top: 4px solid var(--galaxy-red);
}
.galaxy-feature-box .icon {
    width: 48px;
    height: 48px;
    background: rgba(196, 30, 58, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--galaxy-red);
    font-size: 1.25rem;
    margin-bottom: 16px;
}
.galaxy-feature-box h3 { font-size: 1.1rem; color: var(--galaxy-blue); margin-bottom: 10px; }
.galaxy-feature-box p { font-size: 0.9rem; color: #555; margin: 0; line-height: 1.6; }

.galaxy-quality-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 40px;
}
@media (max-width: 991px) { .galaxy-quality-grid { grid-template-columns: repeat(2, 1fr); } }

.galaxy-quality-box {
    background: #fff;
    border-radius: 12px;
    padding: 28px 20px;
    text-align: center;
    border: 1px solid var(--galaxy-border);
}
.galaxy-quality-box .q-icon {
    font-size: 2rem;
    color: var(--galaxy-red);
    margin-bottom: 12px;
}
.galaxy-quality-box .q-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--galaxy-blue);
    margin-bottom: 4px;
}
.galaxy-quality-box .q-label { font-size: 0.85rem; color: #666; margin: 0; }

.galaxy-compliance {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 36px;
}

@media (max-width: 991px) {
    .galaxy-compliance { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 479px) {
    .galaxy-compliance { grid-template-columns: 1fr; }
}

.galaxy-compliance-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: var(--galaxy-blue);
    border-radius: 12px;
    padding: 20px 16px;
    min-height: 130px;
    text-align: center;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.galaxy-compliance-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(26, 45, 90, 0.2);
}

.galaxy-compliance-card__logo {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.12);
    border-radius: 50%;
    padding: 10px;
}

.galaxy-compliance-card__logo img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.galaxy-compliance-card__name {
    color: #fff;
    font-size: 0.88rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    line-height: 1.3;
}

.galaxy-maps {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    margin-top: 40px;
}
@media (max-width: 767px) { .galaxy-maps { grid-template-columns: 1fr; } }

.galaxy-map-card {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 16px;
    padding: 32px;
    text-align: center;
    min-height: 280px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.galaxy-map-card i { font-size: 4rem; color: var(--galaxy-red); margin-bottom: 16px; opacity: 0.9; }
.galaxy-map-card h4 { color: #fff; margin-bottom: 8px; }
.galaxy-map-card p { color: rgba(255,255,255,0.75); font-size: 0.9rem; margin: 0; }

.galaxy-infra-banner {
    margin-top: 24px;
    margin-bottom: 0;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 12px 32px rgba(26, 45, 90, 0.1);
}

#why-choose.galaxy-section {
    padding-bottom: 60px;
}

#why-choose .galaxy-features {
    margin-bottom: 0;
}

.galaxy-infra-banner img {
    display: block;
    width: 100%;
    height: auto;
    max-height: 480px;
    object-fit: cover;
}

.galaxy-cta-section {
    background: linear-gradient(135deg, var(--galaxy-red) 0%, #9a1830 100%);
    padding: 80px 0;
    text-align: center;
    color: #fff;
}
.galaxy-cta-section h2 {
    color: #fff;
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    margin-bottom: 16px;
}

.galaxy-cta-section h2 .heading-highlight {
    color: #fff !important;
}
.galaxy-cta-section p { color: rgba(255,255,255,0.9); max-width: 560px; margin: 0 auto 32px; }
.galaxy-cta-section .btn-default {
    background: #fff;
    color: var(--galaxy-red);
    margin: 0 8px 8px;
}
.galaxy-cta-section .btn-default:hover { background: var(--galaxy-blue); color: #fff; }

.galaxy-about-intro { max-width: 900px; }
.galaxy-about-intro p { font-size: 1.05rem; line-height: 1.8; color: #444; }

.about-us .section-title {
    margin-bottom: 28px;
    overflow: visible;
}

.about-us .section-title h2 {
    font-size: clamp(1.75rem, 3.2vw, 2.75rem);
    line-height: 1.2;
}

.galaxy-blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 40px;
}

@media (max-width: 991px) {
    .galaxy-blog-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 575px) {
    .galaxy-blog-grid { grid-template-columns: 1fr; }
}

.galaxy-blog-card {
    background: #fff;
    border: 1px solid var(--galaxy-border);
    border-radius: 14px;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.galaxy-blog-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(26, 45, 90, 0.12);
}

.galaxy-blog-card__image {
    display: block;
    position: relative;
    overflow: hidden;
    aspect-ratio: 16 / 10;
}

.galaxy-blog-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.galaxy-blog-card:hover .galaxy-blog-card__image img {
    transform: scale(1.06);
}

.galaxy-blog-card__category {
    position: absolute;
    left: 14px;
    bottom: 14px;
    background: var(--galaxy-red);
    color: #fff;
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    padding: 5px 10px;
    border-radius: 4px;
    line-height: 1.2;
}

.galaxy-blog-card__body {
    padding: 22px 20px 24px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.galaxy-blog-card__date {
    display: block;
    font-size: 0.8rem;
    color: #888;
    margin-bottom: 10px;
}

.galaxy-blog-card__title {
    margin: 0 0 12px;
    font-size: 1.15rem;
    line-height: 1.4;
}

.galaxy-blog-card__title a {
    color: var(--galaxy-blue) !important;
    text-decoration: none;
    transition: color 0.2s ease;
}

.galaxy-blog-card__title a:hover {
    color: var(--galaxy-red) !important;
}

.galaxy-blog-card__excerpt {
    margin: 0 0 16px;
    font-size: 0.92rem;
    line-height: 1.65;
    color: #555;
    flex: 1;
}

.galaxy-blog-card__link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--galaxy-red) !important;
    text-decoration: none;
    text-transform: capitalize;
}

.galaxy-blog-card__link::after {
    content: '\2192';
    transition: transform 0.2s ease;
}

.galaxy-blog-card__link:hover::after {
    transform: translateX(4px);
}
