/*=====================================================
AKOM BLOG - FRONTEND
=====================================================*/

.akom-blog-section {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    padding: 76px 0 105px;
    overflow: hidden;
    background: #FFFFFF;
}

.akom-blog-container {
    width: min(1280px, calc(100% - 48px));
    margin: 0 auto;
}

/* Hero */
.akom-blog-hero {
    max-width: 860px;
    margin: 0 auto 56px;
    text-align: center;
}

.akom-blog-hero-bg,
.akom-blog-search,
.akom-blog-categories,
.akom-blog-stats {
    display: none !important;
}

.akom-blog-kicker {
    display: inline-flex;
    margin-bottom: 14px;
    color: #2563EB;
    font-size: 15px;
    font-weight: 900;
}

.akom-blog-hero h1 {
    margin: 0;
    color: #020617;
    font-size: clamp(40px, 5vw, 64px);
    line-height: 1.05;
    font-weight: 900;
    letter-spacing: -0.055em;
}

.akom-blog-hero p {
    max-width: 760px;
    margin: 20px auto 0;
    color: #64748B;
    font-size: 18px;
    line-height: 1.7;
}

/* Grid */
.akom-blog-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 32px;
}

/* Card */
.akom-blog-card {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    min-height: 100%;
    border: 1px solid rgba(226, 232, 240, 0.95);
    border-radius: 28px;
    background: #FFFFFF;
    box-shadow: 0 24px 70px rgba(15, 23, 42, 0.08);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.akom-blog-card:hover{

    transform: translateY(-8px);

    border-left:4px solid #213D7B;

    box-shadow:
        0 24px 55px rgba(33,61,123,.18);

}

/* Image */
.akom-blog-card-image {
    display: block;
    height: 235px;
    overflow: hidden;
    background: #E2E8F0;
    text-decoration: none;
}

.akom-blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.35s ease;
}

.akom-blog-card:hover .akom-blog-card-image img {
    transform: scale(1.045);
}

.akom-blog-card-placeholder {
    display: grid;
    place-items: center;
    height: 100%;
    color: #2563EB;
    font-size: 28px;
    font-weight: 900;
    background: linear-gradient(135deg, #EAF2FF, #DCEBFF);
}

/* Content */
.akom-blog-card-content {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding:30px;
}

.akom-blog-card-category {
    display: inline-flex;
    width: fit-content;
    margin-bottom: 14px;
    padding: 7px 12px;
    border-radius: 999px;
    background: rgba(37, 99, 235, 0.08);
    color: #2563EB;
    font-size: 13px;
    font-weight: 900;
    text-decoration: none;
}

.akom-blog-card-category:hover {
    background: rgba(37, 99, 235, 0.13);
    color: #1D4ED8;
}

.akom-blog-card h2 {
    margin: 0 0 14px;
    font-size: 23px;
    line-height: 1.22;
    font-weight: 900;
    letter-spacing: -0.025em;
    margin-top:0;
    margin-bottom:18px;
}

.akom-blog-card h2 a {
    color: #020617;
    text-decoration: none;
}

.akom-blog-card h2 a:hover {
    color: #2563EB;
}

.akom-blog-card-content p {
    margin: 0 0 22px;
    color: #64748B;
    font-size: 15px;
    line-height: 1.75;
}

/* Meta */
.akom-blog-card-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 16px;
    margin-top: auto;
    margin-bottom: 24px;
    padding-bottom: 22px;
    border-bottom: 1px solid rgba(226, 232, 240, 0.95);
    color: #64748B;
    font-size: 14px;
    font-weight: 700;
}

.akom-blog-card-meta span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.akom-blog-card-meta i {
    color: #2563EB;
    font-size: 15px;
    line-height: 1;
}

/* CTA */

.akom-blog-card-action {
    display: flex;
    justify-content: center;
    margin-top: auto;
}

.akom-blog-card-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;

    width: 50%;
    min-width: 190px;
    height: 50px;

    border-radius: 999px;

    background: linear-gradient(135deg, #2563EB 0%, #38BDF8 100%);
    color: #FFFFFF;

    font-size: 15px;
    font-weight: 800;
    text-decoration: none;

    box-shadow: 0 16px 34px rgba(37, 99, 235, .22);

    transition: all .30s ease;
}

.akom-blog-card-link i {
    transition: transform .30s ease;
}

.akom-blog-card-link:hover {
    color: #FFFFFF;
    transform: translateY(-3px);
    box-shadow: 0 22px 46px rgba(37, 99, 235, .30);
}

.akom-blog-card-link:hover i {
    transform: translateX(5px);
}

/* Pagination */
.akom-blog-pagination {
    margin-top: 54px;
    text-align: center;
}

.akom-blog-pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    height: 44px;
    margin: 5px;
    padding: 0 14px;
    border: 1px solid rgba(203, 213, 225, 0.95);
    border-radius: 12px;
    background: #FFFFFF;
    color: #334155;
    font-size: 14px;
    font-weight: 900;
    text-decoration: none;
    transition: all 0.25s ease;
}

.akom-blog-pagination .page-numbers:hover,
.akom-blog-pagination .page-numbers.current {
    border-color: #2563EB;
    background: #2563EB;
    color: #FFFFFF;
    box-shadow: 0 14px 28px rgba(37, 99, 235, 0.24);
}

.akom-blog-empty {
    padding: 42px;
    border-radius: 24px;
    background: #FFFFFF;
    color: #64748B;
    text-align: center;
    font-weight: 700;
}

/* Responsive */
@media (max-width: 1100px) {
    .akom-blog-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 700px) {
    .akom-blog-section {
        padding: 56px 0 78px;
    }

    .akom-blog-container {
        width: min(100% - 28px, 1280px);
    }

    .akom-blog-hero {
        margin-bottom: 38px;
    }

    .akom-blog-hero h1 {
        font-size: 36px;
        letter-spacing: -0.04em;
    }

    .akom-blog-hero p {
        font-size: 16px;
    }

    .akom-blog-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .akom-blog-card-image {
        height: 210px;
    }

    .akom-blog-card-content {
        padding:30px;
    }

    .akom-blog-card h2 {
        font-size: 21px;
    }

    .akom-blog-card-meta {
        gap: 12px;
        font-size: 13px;
    }
}


/*=====================================================
AKOM BLOG - PAGINATION (MOBILE)
=====================================================*/

@media (max-width: 700px) {

    .akom-blog-pagination {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 8px;
        margin-top: 42px;
    }

    .akom-blog-pagination .page-numbers {
        min-width: 42px;
        height: 42px;
        margin: 0;
        padding: 0 12px;
        border-radius: 12px;
        font-size: 13px;
    }

    .akom-blog-pagination .prev,
    .akom-blog-pagination .next {
        min-width: auto;
        padding: 0 16px;
    }

}


/*=====================================================
AKOM BLOG - FINITIONS
=====================================================*/

.akom-blog-card {
    animation: akomBlogFadeUp 0.55s ease both;
}

.akom-blog-card:nth-child(2) {
    animation-delay: 0.08s;
}

.akom-blog-card:nth-child(3) {
    animation-delay: 0.16s;
}

.akom-blog-card-image {
    position: relative;
}

.akom-blog-featured-badge {
    position: absolute;
    top: 18px;
    left: 18px;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 34px;
    padding: 0 13px;
    border-radius: 999px;
    background: linear-gradient(135deg, #2563EB, #38BDF8);
    color: #FFFFFF;
    font-size: 12px;
    font-weight: 900;
    box-shadow: 0 14px 30px rgba(37, 99, 235, 0.28);
}

.akom-blog-card.is-featured {
    border-color: rgba(37, 99, 235, 0.22);
}

.akom-blog-empty {
    max-width: 620px;
    margin: 0 auto;
    padding: 54px 34px;
    border: 1px solid rgba(226, 232, 240, 0.95);
    border-radius: 30px;
    background: #FFFFFF;
    text-align: center;
    box-shadow: 0 24px 70px rgba(15, 23, 42, 0.08);
}

.akom-blog-empty-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 68px;
    height: 68px;
    margin-bottom: 18px;
    border-radius: 22px;
    background: rgba(37, 99, 235, 0.08);
    color: #2563EB;
    font-size: 28px;
}

.akom-blog-empty h3 {
    margin: 0 0 10px;
    color: #020617;
    font-size: 26px;
    font-weight: 900;
}

.akom-blog-empty p {
    max-width: 460px;
    margin: 0 auto;
    color: #64748B;
    font-size: 16px;
    line-height: 1.7;
}

@keyframes akomBlogFadeUp {
    from {
        opacity: 0;
        transform: translateY(22px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/*=====================================================
SINGLE BLOG - HERO
=====================================================*/

.akom-single-blog-page {
    background: #ffffff;
    overflow: hidden;
}

.akom-single-container {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
}

.akom-single-hero {
    position: relative;
    padding: 120px 0 95px;
    overflow: hidden;
    background:
        radial-gradient(circle at 15% 20%, rgba(37, 99, 235, 0.18), transparent 34%),
        radial-gradient(circle at 85% 15%, rgba(56, 189, 248, 0.16), transparent 30%),
        linear-gradient(135deg, #020617 0%, #0f172a 48%, #111827 100%);
}

.akom-single-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.045) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.045) 1px, transparent 1px);
    background-size: 44px 44px;
    opacity: 0.35;
}

.akom-single-hero-content {
    position: relative;
    z-index: 2;
    max-width: 920px;
    text-align: center;
    margin: 0 auto;
}

.akom-single-category {
    display: inline-flex;
    align-items: center;
    padding: 10px 18px;
    border-radius: 999px;
    background: rgba(37, 99, 235, 0.18);
    border: 1px solid rgba(147, 197, 253, 0.35);
    color: #bfdbfe;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: none;
    margin-bottom: 24px;
}

.akom-single-title {
    margin: 0;
    color: #ffffff;
    font-size: clamp(38px, 5vw, 72px);
    line-height: 1.05;
    font-weight: 900;
    letter-spacing: -0.05em;
}

.akom-single-excerpt {
    max-width: 760px;
    margin: 26px auto 0;
    color: #cbd5e1;
    font-size: 19px;
    line-height: 1.8;
}

.akom-single-meta {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 34px;
}

.akom-single-meta span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: #e5e7eb;
    font-size: 14px;
    font-weight: 600;
    backdrop-filter: blur(14px);
}

@media (max-width: 768px) {
    .akom-single-hero {
        padding: 90px 0 70px;
    }

    .akom-single-title {
        font-size: 38px;
    }

    .akom-single-excerpt {
        font-size: 17px;
    }
}

.akom-single-meta span i {
    color: #2563eb;
    font-size: 15px;
    flex-shrink: 0;
}


/*=====================================================
SINGLE BLOG - FEATURED IMAGE
=====================================================*/

.akom-single-featured {
    position: relative;
    margin-top: -70px;
    padding-bottom: 90px;
    z-index: 5;
}

.akom-single-featured .akom-single-container {
    max-width: 1040px;
}

.akom-single-featured-card {
    overflow: hidden;
    border-radius: 34px;
    background: #ffffff;
    box-shadow: 0 35px 95px rgba(15, 23, 42, 0.22);
    border: 1px solid rgba(226, 232, 240, 0.9);
}

.akom-single-featured-card img {
    display: block;
    width: 100%;
    height: auto;
    min-height: 420px;
    object-fit: cover;
}

@media (max-width: 768px) {
    .akom-single-featured {
        margin-top: -45px;
        padding-bottom: 60px;
    }

    .akom-single-featured-card {
        border-radius: 24px;
    }

    .akom-single-featured-card img {
        min-height: 260px;
    }
}


/*=====================================================
SINGLE BLOG - CONTENT LAYOUT PREMIUM
=====================================================*/

.akom-single-body {
    padding: 35px 0 70px;
    background:
        radial-gradient(circle at 8% 8%, rgba(37, 99, 235, 0.04), transparent 26%),
        #ffffff;
}

.akom-single-layout {
    display: grid;
    grid-template-columns: minmax(0, 820px) 320px;
    gap: 76px;
    align-items: start;
    justify-content: center;
}

.akom-single-content {
    min-width: 0;
    color: #475569;
    font-size: 18px;
    line-height: 1.95;
}

.akom-single-content > *:first-child {
    margin-top: 0;
}

.akom-single-content h2,
.akom-single-content h3,
.akom-single-content h4 {
    color: #020617;
    line-height: 1.18;
    letter-spacing: -0.045em;
    font-weight: 900;
}

.akom-single-content h2 {
    margin: 60px 0 22px;
    font-size: clamp(30px, 3vw, 42px);
}

.akom-single-content h3 {
    margin: 42px 0 16px;
    font-size: 27px;
}

.akom-single-content p {
    margin: 0 0 24px;
}

.akom-single-content ul,
.akom-single-content ol {
    margin: 0 0 32px;
    padding-left: 0;
    list-style: none;
}

.akom-single-content li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 12px;
}

.akom-single-content li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 14px;
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: linear-gradient(135deg, #2563eb, #38bdf8);
    box-shadow: 0 0 0 5px rgba(37, 99, 235, 0.10);
}

.akom-single-content blockquote {
    margin: 42px 0;
    padding: 30px 34px;
    border-radius: 26px;
    background: linear-gradient(135deg, #eff6ff, #ffffff);
    border: 1px solid #bfdbfe;
    color: #0f172a;
    font-size: 22px;
    line-height: 1.7;
    font-weight: 800;
    box-shadow: 0 24px 70px rgba(37, 99, 235, 0.10);
}

.akom-single-content table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    margin: 32px 0 42px;
    overflow: hidden;
    border-radius: 22px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 20px 55px rgba(15, 23, 42, 0.08);
}

.akom-single-content th,
.akom-single-content td {
    padding: 16px 18px;
    border-bottom: 1px solid #e2e8f0;
    text-align: left;
}

.akom-single-content th {
    background: #f8fafc;
    color: #0f172a;
    font-weight: 900;
}

.akom-single-content tr:last-child td {
    border-bottom: 0;
}

.akom-single-content img {
    display: block;
    width: 100%;
    height: auto;
    margin: 34px 0;
    border-radius: 28px;
    box-shadow: 0 28px 70px rgba(15, 23, 42, 0.14);
}

.akom-single-content a {
    color: #2563eb;
    font-weight: 800;
    text-decoration: none;
}

.akom-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0 24px;
    border-radius: 16px;
    background: linear-gradient(135deg, #2563eb, #38bdf8);
    color: #ffffff !important;
    font-size: 15px;
    font-weight: 900;
    box-shadow: 0 18px 45px rgba(37, 99, 235, 0.28);
}

.akom-single-sidebar {
    position: sticky;
    top: 120px;
}

.akom-single-sidebar-card {
    padding: 26px;
    border-radius: 28px;
    background: rgba(248, 250, 252, 0.88);
    border: 1px solid rgba(226, 232, 240, 0.95);
    margin-bottom: 20px;
    box-shadow: 0 22px 65px rgba(15, 23, 42, 0.07);
    backdrop-filter: blur(16px);
}

.akom-sidebar-title {
    margin: 0 0 18px;
    color: #020617;
    font-size: 16px;
    font-weight: 900;
}

.akom-single-toc {
    display: grid;
    gap: 11px;
}

.akom-single-toc a {
    position: relative;
    color: #64748b;
    font-size: 14px;
    font-weight: 800;
    text-decoration: none;
    line-height: 1.5;
    padding-left: 16px;
}

.akom-single-toc a::before {
    content: "";
    position: absolute;
    left: 0;
    top: 9px;
    width: 5px;
    height: 5px;
    border-radius: 999px;
    background: #2563eb;
}

.akom-single-toc a.is-child {
    padding-left: 16px;
    font-size: 14px;
    font-weight: 700;
    color: #64748b;
}

.akom-single-toc a:hover {
    color: #2563eb;
}

.akom-toc-empty {
    color: #94a3b8;
    font-size: 14px;
    font-weight: 700;
}

.akom-single-share {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.akom-single-share a {
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    background: #ffffff;
    color: #2563eb;
    border: 1px solid #e2e8f0;
    text-decoration: none;
    box-shadow: 0 10px 25px rgba(15, 23, 42, 0.06);
    transition: 0.25s ease;
}

.akom-single-share a:hover {
    transform: translateY(-3px);
    background: #2563eb;
    color: #ffffff;
}

@media (max-width: 992px) {
    .akom-single-body {
        padding: 30px 0 80px;
    }

    .akom-single-layout {
        display: flex;
        flex-direction: column;
        gap: 34px;
    }

    .akom-single-sidebar {
        order: -1;
        position: static;
        width: 100%;
    }

    .akom-single-sidebar-card {
        padding: 22px;
        border-radius: 24px;
        margin-bottom: 16px;
    }

    .akom-single-content {
        width: 100%;
        font-size: 17px;
        line-height: 1.85;
    }

    .akom-single-content h2 {
        font-size: 30px;
        margin-top: 42px;
    }

    .akom-single-content h3 {
        font-size: 22px;
    }

    .akom-single-content table {
        display: block;
        overflow-x: auto;
        white-space: nowrap;
    }

    .akom-single-share {
        justify-content: flex-start;
    }
}




/*=====================================================
SINGLE BLOG - AUTHOR CARD PREMIUM
=====================================================*/

.akom-single-author-section {
    padding: 0 0 80px;
    margin-top: -20px;
    background: #ffffff;
}

.akom-single-author-section .akom-single-container {
    display: grid;
    grid-template-columns: minmax(0, 820px) 320px;
    gap: 76px;
    justify-content: center;
}

.akom-single-author-box {
    grid-column: 1;
    width: 100%;
    margin: 0;
    padding: 34px;
    display: flex;
    align-items: center;
    gap: 26px;
    border-radius: 28px;
    background: #ffffff;
    border: 1px solid rgba(226, 232, 240, 0.95);
    box-shadow: 0 20px 60px rgba(15, 23, 42, 0.06);
}

.akom-single-author-avatar {
    width: 88px;
    height: 88px;
    flex: 0 0 88px;
    border-radius: 50%;
    overflow: hidden;
    background: #f1f5f9;
    border: 4px solid #ffffff;
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.12);
}

.akom-single-author-avatar img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.akom-single-author-content span {
    display: block;
    margin-bottom: 8px;
    color: #2563eb;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.akom-single-author-content h3 {
    margin: 0;
    color: #020617;
    font-size: 30px;
    line-height: 1.15;
    font-weight: 900;
    letter-spacing: -0.04em;
}

.akom-single-author-content p {
    margin: 10px 0 0;
    color: #475569;
    font-size: 17px;
    line-height: 1.75;
}

@media (max-width: 992px) {
    .akom-single-author-section {
        margin-top: -10px;
        padding: 0 0 60px;
    }

    .akom-single-author-section .akom-single-container {
        display: block;
    }

    .akom-single-author-box {
        width: 100%;
    }
}

@media (max-width: 700px) {
    .akom-single-author-section {
        padding: 0 0 55px;
    }

    .akom-single-author-box {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 28px 22px;
        border-radius: 24px;
        gap: 18px;
    }

    .akom-single-author-avatar {
        width: 82px;
        height: 82px;
        flex-basis: 82px;
    }

    .akom-single-author-content h3 {
        font-size: 26px;
    }

    .akom-single-author-content p {
        font-size: 15px;
        line-height: 1.7;
    }
}


/*=====================================================
SINGLE BLOG - RELATED POSTS
=====================================================*/

.akom-single-related {
    padding: 0 0 105px;
    background:
        radial-gradient(circle at 10% 10%, rgba(37, 99, 235, 0.06), transparent 28%),
        linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.akom-single-related-head {
    max-width: 720px;
    margin: 0 auto 46px;
    text-align: center;
}

.akom-single-related-head span {
    display: inline-flex;
    margin-bottom: 12px;
    color: #2563eb;
    font-size: 14px;
    font-weight: 900;
}

.akom-single-related-head h2 {
    margin: 0;
    color: #020617;
    font-size: clamp(34px, 4vw, 50px);
    line-height: 1.1;
    font-weight: 900;
    letter-spacing: -0.05em;
}

.akom-related-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

@media (max-width: 1100px) {
    .akom-related-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 700px) {
    .akom-single-related {
        padding: 0 0 78px;
    }

    .akom-single-related-head {
        margin-bottom: 32px;
    }

    .akom-related-grid {
        grid-template-columns: 1fr;
    }
}


/* SINGLE SIDEBAR - CATEGORIES */
.akom-single-categories {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.akom-single-categories a {
    display: inline-flex;
    align-items: center;
    padding: 9px 13px;
    border-radius: 999px;
    background: rgba(37, 99, 235, 0.08);
    color: #2563eb;
    font-size: 13px;
    font-weight: 900;
    text-decoration: none;
}

.akom-single-categories a:hover {
    background: #2563eb;
    color: #ffffff;
}


/*=====================================================
SINGLE BLOG - MOBILE
=====================================================*/

@media (max-width: 992px) {

    .akom-single-sidebar {
        display: none;
    }

    .akom-single-layout {
        display: block;
    }

    .akom-single-content {
        width: 100%;
    }

}


/*=====================================================
GERMAN RETROFIT - FINAL BLOG DESIGN
=====================================================*/

:root {
    --gr-blue-dark: #213D7B;
    --gr-blue: #213D7B;
    --gr-text-dark: #020617;
    --gr-text-muted: #64748B;
}

/* Archive global colors */
.akom-blog-kicker,
.akom-blog-card-meta i,
.akom-blog-card h2 a:hover,
.akom-blog-card-link,
.akom-single-content a,
.akom-single-author-content span {
    color: var(--gr-blue-dark) !important;
}

/* Hide unused elements */
.akom-blog-card-category,
.akom-single-category,
.akom-single-toc,
.akom-single-categories {
    display: none !important;
}

/* Blog card */
.akom-blog-card {
     border-left: none !important;
    transition:
        transform .35s ease,
        box-shadow .35s ease,
        border-color .35s ease;
}

.akom-blog-card:hover {
    transform: translateY(-8px);
    border-left: none !important;
    box-shadow: 0 24px 55px rgba(33, 61, 123, .18);
}

/* Card image 16/9 */
.akom-blog-card-image {
    height: auto !important;
    aspect-ratio: 16 / 9;
}

.akom-blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s ease;
}

.akom-blog-card:hover .akom-blog-card-image img {
    transform: scale(1.06);
}

/* Card content */
.akom-blog-card-content {
    padding: 30px;
}

.akom-blog-card h2 {
    margin-top: 0;
    margin-bottom: 18px;
}

.akom-blog-card h2 a {
    color: var(--gr-text-dark);
}

.akom-blog-card h2 a:hover {
    color: var(--gr-blue-dark) !important;
}

.akom-blog-card-content p {
    margin-bottom: 24px;
}

/* Meta */
.akom-blog-card-meta span {
    color: var(--gr-text-muted);
}

.akom-blog-card-meta i {
    color: var(--gr-blue-dark) !important;
}

/* Read more link */
.akom-blog-card-action {
    justify-content: flex-start;
}

.akom-blog-card-link {
    width: auto !important;
    min-width: unset !important;
    height: auto !important;
    padding: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    color: var(--gr-blue-dark) !important;
    font-weight: 900;
}

.akom-blog-card-link:hover {
    transform: none !important;
    box-shadow: none !important;
    color: var(--gr-blue-dark) !important;
}

/* Pagination */
.akom-blog-pagination .page-numbers:hover,
.akom-blog-pagination .page-numbers.current {
    border-color: var(--gr-blue-dark);
    background: var(--gr-blue-dark);
    color: #ffffff;
    box-shadow: 0 14px 28px rgba(33, 61, 123, 0.24);
}

/* Single hero */
.akom-single-hero {
    background:
        radial-gradient(circle at 15% 20%, rgba(255, 255, 255, 0.12), transparent 34%),
        radial-gradient(circle at 85% 15%, rgba(0, 122, 255, 0.18), transparent 30%),
        linear-gradient(135deg, #213D7B 0%, #162b5a 55%, #0d1938 100%) !important;
}

.akom-single-hero-content {
    max-width: 1080px;
}

.akom-single-excerpt {
    max-width: 920px;
}

.akom-single-meta span i {
    color: #ffffff !important;
}

/* Single width */
.akom-single-container {
    width: min(1240px, calc(100% - 40px));
}

.akom-single-layout {
    grid-template-columns: minmax(0, 860px) 300px;
    gap: 60px;
}

/* Content bullets */
.akom-single-content li::before {
    background: var(--gr-blue-dark);
    box-shadow: 0 0 0 5px rgba(33, 61, 123, 0.10);
}

/* Buttons */
.akom-btn {
    background: var(--gr-blue-dark);
    box-shadow: 0 18px 45px rgba(33, 61, 123, 0.28);
}

/* Latest posts sidebar */
.akom-latest-sidebar-list {
    display: grid;
    gap: 18px;
}

.akom-latest-sidebar-item {
    display: grid;
    grid-template-columns: 86px 1fr;
    gap: 14px;
    align-items: center;
    text-decoration: none;
}

.akom-latest-sidebar-image {
    width: 86px;
    height: 68px;
    overflow: hidden;
    border-radius: 14px;
    background: #eef4ff;
}

.akom-latest-sidebar-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.akom-latest-sidebar-placeholder {
    display: grid;
    place-items: center;
    width: 100%;
    height: 100%;
    color: var(--gr-blue-dark);
    font-weight: 900;
}

.akom-latest-sidebar-title {
    color: var(--gr-text-dark);
    font-size: 14px;
    line-height: 1.35;
    font-weight: 900;
}

.akom-latest-sidebar-item:hover .akom-latest-sidebar-title {
    color: var(--gr-blue-dark);
}

/* Share */
.akom-single-share a {
    color: var(--gr-blue-dark);
}

.akom-single-share a:hover {
    background: var(--gr-blue-dark);
    color: #ffffff;
}

/* Author */
.akom-single-author-section .akom-single-container {
    grid-template-columns: minmax(0, 860px) 300px;
    gap: 60px;
}

/* Mobile */
@media (max-width: 992px) {
    .akom-single-sidebar {
        display: none;
    }

    .akom-single-layout {
        display: block;
    }
}

@media (max-width: 700px) {
    .akom-blog-card-content {
        padding: 26px;
    }
}


/*=====================================================
GERMAN RETROFIT - REMOVE UDESIGN ELEMENTOR PAGE HEADER
=====================================================*/

.single-post .alpha-block[data-block-id="6831"],
.single-post .elementor-6831,
.single-post .cs-pageheader {
    display: none !important;
    height: 0 !important;
    min-height: 0 !important;
    padding: 0 !important;
    margin: 0 !important;
    overflow: hidden !important;
}