:root {
    --primary-color: #1a1a2e;
    --secondary-color: #16213e;
    --accent-color: #e94560;
    --accent-yellow: #f4d03f;
    --text-light: #ffffff;
    --text-dark: #1a1a2e;
    --text-gray: #6c757d;
    --bg-light: #f8f9fa;
    --bg-dark: #0f0f23;
    --gradient-1: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    --gradient-2: linear-gradient(135deg, #e94560 0%, #ff6b6b 100%);
    --gradient-3: linear-gradient(135deg, #f4d03f 0%, #f39c12 100%);
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.2);
    --border-radius: 12px;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Noto Kufi Arabic", sans-serif;
    background-color: var(--bg-light);
    color: var(--text-dark);
    line-height: 1.7;
    overflow-x: hidden;
}

html {
    scroll-behavior: smooth;
}

/* Header Styles */
.site-header {
    background: var(--gradient-1);
    color: var(--text-light);
    padding: 0;
    position: relative;
    z-index: 1000;
    box-shadow: var(--shadow-md);
}

.top-bar {
    background: var(--secondary-color);
    padding: 8px 0;
    font-size: 0.85rem;
}

.top-bar-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.date-info {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.date-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.9);
}

.date-item i {
    color: var(--accent-yellow);
}

.weather-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.weather-item {
    display: flex;
    align-items: center;
    gap: 5px;
    background: rgba(255, 255, 255, 0.1);
    padding: 5px 12px;
    border-radius: 20px;
}

.weather-item i {
    color: var(--accent-yellow);
}

.main-header {
    padding: 20px 0;
}

.header-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.brand-mark {
    width: 64px;
    height: 64px;
    border-radius: 18px;
    background: radial-gradient(
        circle at 30% 25%,
        #ff9a7d 0%,
        #e94560 45%,
        #7f2b94 100%
    );
    box-shadow: 0 10px 25px rgba(233, 69, 96, 0.35);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    text-decoration: none;
}

.brand-mark::before {
    content: "";
    position: absolute;
    width: 100px;
    height: 100px;
    border-radius: 40%;
    background: rgba(255, 255, 255, 0.14);
    top: -60px;
    left: -28px;
    transform: rotate(18deg);
}

.brand-core {
    position: relative;
    z-index: 2;
    width: 27px;
    height: 27px;
    border: 3px solid rgba(255, 255, 255, 0.95);
    border-radius: 9px 14px 10px 14px;
    transform: rotate(-12deg);
    box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.15);
}

.brand-core-alt {
    position: absolute;
    z-index: 2;
    width: 13px;
    height: 13px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.95);
    left: 34px;
    top: 19px;
    box-shadow: 0 0 0 6px rgba(255, 255, 255, 0.15);
}

.brand-pulse {
    position: absolute;
    inset: 0;
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: inherit;
    opacity: 0.8;
    transform: scale(0.94);
    animation: brandPulse 3.6s ease-in-out infinite;
}

@keyframes brandPulse {
    0%,
    100% {
        transform: scale(0.92);
        opacity: 0.3;
    }

    50% {
        transform: scale(1);
        opacity: 0.9;
    }
}

.site-title {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.site-title strong {
    font-size: 2rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: 0.5px;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.search-box {
    position: relative;
}

.search-box input {
    padding: 10px 40px 10px 15px;
    border: none;
    border-radius: 25px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    width: 200px;
    font-family: inherit;
    transition: var(--transition);
}

.search-box input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.search-box input:focus {
    outline: none;
    width: 250px;
    background: rgba(255, 255, 255, 0.15);
}

.search-box i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--accent-yellow);
}

.social-links {
    display: flex;
    gap: 10px;
}

.social-links a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--accent-color);
    transform: translateY(-3px);
}

/* Navigation */
.main-nav {
    background: var(--secondary-color);
    padding: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    transition:
        max-height 0.38s ease,
        opacity 0.28s ease,
        transform 0.32s ease;
    max-height: 90px;
    opacity: 1;
    transform: translateY(0);
    overflow: hidden;
}

.main-nav.is-hidden {
    max-height: 0;
    opacity: 0;
    transform: translateY(-8px);
    border-color: transparent;
}

.nav-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 12px;
    display: flex;
    justify-content: center;
    overflow-x: auto;
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 255, 255, 0.4) transparent;
}

.nav-toggle {
    display: none;
    width: 46px;
    height: 40px;
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 12px;
    background: #05070d;
    color: #fff !important;
    cursor: pointer;
    padding: 8px 9px;
    box-shadow: 0 6px 14px rgba(8, 12, 25, 0.28);
}

.nav-toggle:hover {
    background: #02040a;
    border-color: rgba(255, 255, 255, 0.55);
}

.nav-toggle:focus-visible {
    outline: 2px solid rgba(255, 255, 255, 0.85);
    outline-offset: 2px;
}

.nav-toggle span {
    display: block;
    width: 100%;
    height: 2.5px;
    background: #fff !important;
    border-radius: 999px;
    margin: 4.5px 0;
    opacity: 1 !important;
    filter: none !important;
    mix-blend-mode: normal !important;
    box-shadow: 0 0 0 0.2px #fff;
    transition:
        transform 0.2s ease,
        opacity 0.2s ease;
}

.nav-toggle:hover span,
.nav-toggle:focus-visible span {
    box-shadow: 0 0 0 0.35px #fff, 0 0 8px rgba(255, 255, 255, 0.35);
}

.nav-collapse {
    display: flex;
}

.main-nav.menu-open .nav-toggle span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.main-nav.menu-open .nav-toggle span:nth-child(2) {
    opacity: 0;
}

.main-nav.menu-open .nav-toggle span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 4px;
    flex-wrap: nowrap;
    min-width: max-content;
    padding: 8px 0;
}

.nav-links li a {
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 10px 12px;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-size: 0.88rem;
    font-weight: 600;
    border-radius: 999px;
    transition:
        background 0.25s ease,
        color 0.25s ease,
        transform 0.2s ease;
    white-space: nowrap;
    border: 1px solid transparent;
}

.nav-links li a:hover,
.nav-links li a.active {
    background: rgba(255, 255, 255, 0.14);
    border-color: rgba(255, 255, 255, 0.28);
    color: white;
    transform: translateY(-1px);
}

.nav-links li a i {
    color: var(--accent-yellow);
}

/* Breaking News */
.breaking-news {
    background: var(--accent-color);
    color: white;
    padding: 12px 0;
    position: relative;
    overflow: hidden;
}

.breaking-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.breaking-label {
    background: var(--text-dark);
    padding: 8px 20px;
    border-radius: 25px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
    z-index: 2;
}

.breaking-label i {
    color: var(--accent-yellow);
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }
}

.marquee-container {
    flex: 1;
    overflow: hidden;
    position: relative;
}

.marquee-content {
    display: flex;
    animation: marquee 30s linear infinite;
    white-space: nowrap;
}

.marquee-container:hover .marquee-content {
    animation-play-state: paused;
}

@keyframes marquee {
    0% {
        transform: translateX(100%);
    }

    100% {
        transform: translateX(-100%);
    }
}

.marquee-content span {
    padding: 0 30px;
    font-weight: 500;
}

.marquee-content span::after {
    content: "•";
    margin-right: 30px;
    color: var(--accent-yellow);
}

/* Main Content */
.main-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 30px 20px;
}

.layout-with-side-ads {
    max-width: 1920px;
    margin: 0 auto;
    padding: 0 16px;
    display: grid;
    grid-template-columns: 300px minmax(0, 1400px) 300px;
    gap: 20px;
    align-items: start;
}

.layout-with-side-ads .main-content {
    max-width: 100%;
    padding: 30px 0;
}

.side-ad-column {
    position: sticky;
    top: 20px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.side-ad-slot {
    background: #fff;
    border: 1px solid #e9edf2;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    padding: 12px;
}

.side-ad-label {
    display: inline-block;
    margin-bottom: 8px;
    font-size: 0.72rem;
    font-weight: 700;
    color: #8a95a3;
}

.side-ad-box {
    min-height: 250px;
    border: 1px dashed #cfd6df;
    border-radius: 10px;
    display: grid;
    place-items: center;
    font-size: 0.88rem;
    color: #6f7c8d;
    background: linear-gradient(
        135deg,
        rgba(26, 33, 62, 0.03) 0%,
        rgba(233, 69, 96, 0.03) 100%
    );
}

/* Ad Slots */
.ad-slot {
    max-width: 1400px;
    margin: 18px auto 36px;
    background: #fff;
    border: 1px solid #e9edf2;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
}

.ad-slot-inner {
    min-height: 110px;
    padding: 18px 22px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    background: linear-gradient(
        135deg,
        rgba(26, 33, 62, 0.04) 0%,
        rgba(233, 69, 96, 0.04) 100%
    );
}

.ad-slot-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 10px;
    border-radius: 999px;
    background: rgba(26, 33, 62, 0.1);
    color: var(--secondary-color);
    font-size: 0.75rem;
    font-weight: 700;
}

.ad-slot-text h3 {
    font-size: 1.05rem;
    margin-bottom: 4px;
}

.ad-slot-text p {
    color: var(--text-gray);
    font-size: 0.88rem;
}

.ad-slot-size {
    color: #99a3b1;
    font-size: 0.76rem;
    font-weight: 700;
    white-space: nowrap;
}

.ad-slot-group {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
    margin: 22px 0 36px;
}

/* Hero Section / Carousel */
.hero-section {
    margin-bottom: 50px;
}

.hero-carousel {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.carousel-slides {
    position: relative;
    height: 500px;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease;
}

.carousel-slide.active {
    opacity: 1;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.carousel-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 40px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
    color: white;
}

.carousel-category {
    display: inline-block;
    background: var(--accent-color);
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.carousel-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 1.4;
}

.carousel-excerpt {
    font-size: 1rem;
    opacity: 0.9;
    margin-bottom: 15px;
}

.carousel-meta {
    display: flex;
    align-items: center;
    gap: 20px;
    font-size: 0.85rem;
    opacity: 0.8;
}

.carousel-controls {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    pointer-events: none;
}

.carousel-controls button {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    pointer-events: auto;
    transition: var(--transition);
    backdrop-filter: blur(5px);
}

.carousel-controls button:hover {
    background: var(--accent-color);
    transform: scale(1.1);
}

.carousel-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: var(--transition);
}

.carousel-dot.active {
    background: var(--accent-color);
    transform: scale(1.2);
}

/* News Sections */
.news-section {
    margin-bottom: 50px;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 3px solid var(--accent-color);
}

.section-title {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.section-title i {
    color: var(--accent-color);
    font-size: 1.3rem;
}

.section-title .icon-wrapper {
    width: 45px;
    height: 45px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.read-more {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.read-more:hover {
    gap: 12px;
    color: var(--secondary-color);
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.news-card {
    background: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    cursor: pointer;
}

.news-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.news-card-image {
    position: relative;
    height: 180px;
    overflow: hidden;
}

.news-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.news-card:hover .news-card-image img {
    transform: scale(1.1);
}

.news-card-category {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--accent-color);
    color: white;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 600;
}

.news-card-content {
    padding: 20px;
}

.news-card-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 12px;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-card-title:hover {
    color: var(--accent-color);
}

.news-card-excerpt {
    font-size: 0.85rem;
    color: var(--text-gray);
    margin-bottom: 15px;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-card-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
    color: var(--text-gray);
    padding-top: 15px;
    border-top: 1px solid #eee;
}

.news-card-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.news-card-meta i {
    color: var(--accent-color);
}

/* Section-specific colors */
.sport .icon-wrapper {
    background: linear-gradient(135deg, #27ae60, #2ecc71);
}

.art .icon-wrapper {
    background: linear-gradient(135deg, #9b59b6, #a569bd);
}

.politics .icon-wrapper {
    background: linear-gradient(135deg, #34495e, #2c3e50);
}

.global_news .icon-wrapper {
    background: linear-gradient(135deg, #3498db, #2980b9);
}

.local_news .icon-wrapper {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
}

.technology .icon-wrapper {
    background: linear-gradient(135deg, #1abc9c, #16a085);
}

.entertainment .icon-wrapper {
    background: linear-gradient(135deg, #f39c12, #e67e22);
}

.health .icon-wrapper {
    background: linear-gradient(135deg, #e91e63, #ad1457);
}

.business .icon-wrapper {
    background: linear-gradient(135deg, #607d8b, #455a64);
}

.science .icon-wrapper {
    background: linear-gradient(135deg, #3f51b5, #303f9f);
}

.travel .icon-wrapper {
    background: linear-gradient(135deg, #00bcd4, #0097a7);
}

.lifestyle .icon-wrapper {
    background: linear-gradient(135deg, #ff5722, #e64a19);
}

/* Footer */
.site-footer {
    background: var(--primary-color);
    color: white;
    padding: 50px 0 20px;
    margin-top: 50px;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: var(--accent-yellow);
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
}

.footer-section ul li a:hover {
    color: var(--accent-color);
    padding-right: 10px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
}

.back-to-top {
    position: fixed;
    right: 24px;
    bottom: 24px;
    width: 46px;
    height: 46px;
    border: none;
    border-radius: 50%;
    background: var(--accent-color);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    box-shadow: var(--shadow-md);
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    transition:
        opacity 0.25s ease,
        transform 0.25s ease,
        visibility 0.25s ease,
        background 0.25s ease;
    z-index: 1200;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: #cf3d56;
}

.back-to-top:focus-visible {
    outline: 2px solid #fff;
    outline-offset: 2px;
}

/* Responsive */
@media (max-width: 1200px) {
    .layout-with-side-ads {
        grid-template-columns: 1fr;
        padding: 0;
    }

    .layout-with-side-ads .main-content {
        padding: 30px 20px;
    }

    .side-ad-column {
        display: none;
    }

    .news-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .search-box input {
        width: 170px;
    }

    .search-box input:focus {
        width: 210px;
    }

    .site-title strong {
        font-size: 1.8rem;
    }
}

@media (max-width: 768px) {
    .main-nav,
    .main-nav.is-hidden {
        max-height: none;
        opacity: 1;
        transform: none;
        overflow: visible;
        border-color: rgba(255, 255, 255, 0.06);
    }

    .news-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .carousel-slides {
        height: 350px;
    }

    .carousel-title {
        font-size: 1.3rem;
    }

    .header-content {
        flex-direction: column;
        align-items: stretch;
        text-align: right;
        gap: 14px;
    }

    .top-bar-content,
    .date-info {
        gap: 8px;
    }

    .weather-info {
        width: 100%;
        justify-content: space-between;
    }

    .logo-section {
        justify-content: center;
    }

    .header-actions {
        width: 100%;
        justify-content: space-between;
        flex-wrap: wrap;
        gap: 12px;
    }

    .search-box {
        flex: 1;
        min-width: 170px;
    }

    .search-box input,
    .search-box input:focus {
        width: 100%;
    }

    .nav-content {
        justify-content: flex-start;
        flex-wrap: wrap;
        padding: 10px 12px;
        overflow: visible;
    }

    .nav-toggle {
        display: inline-flex;
        flex-direction: column;
        align-items: stretch;
        justify-content: center;
        margin-right: 0;
        margin-left: 0;
        align-self: flex-start;
    }

    .nav-toggle span {
        height: 3px;
    }

    .nav-collapse {
        width: 100%;
        max-height: 0;
        overflow: hidden;
        display: block;
        transition: max-height 0.28s ease;
    }

    .main-nav.menu-open .nav-collapse {
        max-height: 560px;
    }

    .nav-links {
        flex-direction: column;
        min-width: 100%;
        gap: 6px;
        padding: 10px 0 12px;
    }

    .nav-links li a {
        font-size: 0.82rem;
        padding: 9px 12px;
        border-radius: 10px;
        justify-content: flex-start;
    }

    .section-header {
        align-items: flex-start;
        flex-direction: column;
        gap: 10px;
    }

    .ad-slot-inner {
        flex-direction: column;
        align-items: flex-start;
        min-height: 90px;
    }

    .ad-slot-group {
        grid-template-columns: 1fr;
        margin-bottom: 28px;
    }
}

@media (max-width: 480px) {
    .main-content {
        padding: 20px 12px;
    }

    .top-bar {
        font-size: 0.78rem;
    }

    .brand-mark {
        width: 56px;
        height: 56px;
    }

    .site-title strong {
        font-size: 1.55rem;
    }

    .social-links a {
        width: 32px;
        height: 32px;
    }

    .back-to-top {
        right: 14px;
        bottom: 14px;
        width: 42px;
        height: 42px;
    }
}
