.elkait-hero {
    width: 100%;
    /* background: linear-gradient(135deg, #1a1a2e 0%, #0f3460 100%); */
    margin-bottom: 0;
    position: relative;
    padding: 48px 20px 40px !important;
    font-family: 'Poppins', sans-serif;
}

.elkait-hero-container {
    max-width: 1100px !important;
    margin: 0 auto;
    padding: 0;
    text-align: left;
}

.elkait-post-hero-image {
    width: 100%;
    max-width: 1140px;
    margin: 32px auto 50px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.15);
    /* background: linear-gradient(135deg, #1a1a2e 0%, #0f3460 100%); */
    position: relative;
    cursor: pointer;
    height: clamp(220px, 42vh, 560px);
    max-height: 70vh;
}

.elkait-post-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    display: block;
    transition: opacity 0.3s;
}

.elkait-post-hero-image:hover img {
    opacity: 0.92;
}

.elkait-image-expand {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.95);
    border: none;
    border-radius: 50%;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
    z-index: 10;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.elkait-image-expand:hover {
    background: rgba(255, 255, 255, 1);
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.elkait-image-expand svg {
    color: #1a1a2e;
    width: 20px;
    height: 20px;
}

.elkait-image-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.elkait-image-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    animation: elkaitModalFadeIn 0.3s ease;
}

@keyframes elkaitModalFadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.elkait-image-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.92);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    animation: elkaitOverlayFadeIn 0.3s ease;
}

@keyframes elkaitOverlayFadeIn {
    from {
        background: rgba(0, 0, 0, 0);
        backdrop-filter: blur(0px);
    }
    to {
        background: rgba(0, 0, 0, 0.92);
        backdrop-filter: blur(8px);
    }
}

.elkait-image-modal-content {
    position: relative;
    max-width: 90%;
    max-height: 90vh;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 40px 40px;
    animation: elkaitContentSlideIn 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes elkaitContentSlideIn {
    from {
        transform: scale(0.9);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.elkait-image-modal-content img {
    max-width: 100%;
    max-height: 90vh;
    width: auto;
    height: auto;
    object-fit: contain;
    object-position: center center;
    border-radius: 16px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6),
                0 0 0 1px rgba(255, 255, 255, 0.1);
    background: #fff;
    padding: 4px;
    transition: transform 0.3s ease;
}

.elkait-image-modal-content img:hover {
    transform: scale(1.02);
}

.elkait-image-modal-close {
    position: fixed;
    top: 30px;
    right: 30px;
    background: rgba(255, 255, 255, 0.98);
    border: none;
    border-radius: 50%;
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 10001;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.elkait-image-modal-close:hover {
    background: rgba(255, 255, 255, 1);
    transform: scale(1.1) rotate(90deg);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
}

.elkait-image-modal-close:active {
    transform: scale(0.95) rotate(90deg);
}

.elkait-image-modal-close svg {
    color: #1a1a1a;
    width: 22px;
    height: 22px;
    transition: transform 0.3s ease;
}

@media (max-width: 768px) {
    .elkait-image-modal-content {
        max-width: 95%;
        padding: 40px 20px 20px;
    }

    .elkait-image-modal-content img {
        max-height: 85vh;
        border-radius: 12px;
    }

    .elkait-image-modal-close {
        top: 15px;
        right: 15px;
        width: 44px;
        height: 44px;
    }

    .elkait-image-modal-close svg {
        width: 18px;
        height: 18px;
    }
}

.elkait-badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    background: transparent;
    border: 1px solid currentColor;
    font-family: 'Poppins', sans-serif;
    margin-bottom: 20px;
}

.elkait-h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 2.25rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.15;
    color: #0f3460;
    margin: 0 0 16px 0;
}

.elkait-h2 span {
    display: inline-block;
    color: #0f3460;
}

.elkait-subtitle {
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

.elkait-post-content-wrapper {
    max-width: 1140px;
    margin: 0 auto;
    padding: 40px 24px;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 1.8;
    color: #1a1a2e;
}

.elkait-post-content-wrapper h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1a1a2e;
}

.single .entry-content,
.single .post-content,
.single article .entry-content {
    max-width: 860px;
    margin: 0 auto;
    padding: 20px 24px;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 1.8;
    color: #1a1a2e;
}

.elkait-post-content-wrapper img,
.single .entry-content img,
.single .post-content img,
.single article .entry-content img {
    border-radius: 20px;
    max-width: 100%;
    height: auto;
    margin: 30px 0;
}

.single article,
.single .post,
.single .entry {
    max-width: 100%;
}

.entry-footer,
.post-meta-bottom {
    display: none !important;
}

.elkait-share-box {
    max-width: 1140px;
    margin: 80px auto 0;
    padding: 30px 24px;
    border-top: 1px solid #e2e5ea;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: 'Poppins', sans-serif;
}

.elkait-share-label {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #666666;
}

.elkait-share-links {
    display: flex;
    gap: 20px;
    align-items: center;
}

.elkait-share-link {
    text-decoration: none;
    color: #1a1a2e;
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color 0.2s;
    font-family: 'Poppins', sans-serif;
}

.elkait-share-link:hover {
    color: #c8792a;
}

.elkait-copy-link {
    background: #f7f8fa;
    padding: 8px 14px;
    border-radius: 8px;
    font-size: 12px;
    cursor: pointer;
    border: 1px solid #e2e5ea;
    color: #1a1a2e;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    transition: all 0.2s;
}

.elkait-copy-link:hover {
    background: #ffffff;
    border-color: #0f3460;
    color: #0f3460;
}

.elkait-copy-link.copied {
    background: #0f3460;
    color: #fff;
    border-color: #0f3460;
}

.elkait-post-nav {
    max-width: 1140px;
    margin: 0 auto;
    padding: 32px 24px 0;
    font-family: 'Poppins', sans-serif;
}

.elkait-post-nav-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px 32px;
    padding-top: 32px;
    border-top: 1px solid #e2e5ea;
}

.elkait-post-nav-link {
    text-decoration: none;
    color: #1a1a2e;
    display: flex;
    flex-direction: column;
    gap: 8px;
    min-width: 0;
    transition: color 0.2s;
}

.elkait-post-nav-link--next {
    text-align: right;
    align-items: flex-end;
}

.elkait-post-nav-link--prev {
    text-align: left;
    align-items: flex-start;
}

.elkait-post-nav-link:not(.elkait-post-nav-link--empty):hover {
    color: #c8792a;
}

.elkait-post-nav-link--empty {
    pointer-events: none;
}

.elkait-post-nav-direction {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #666666;
}

.elkait-post-nav-title {
    font-size: 15px;
    font-weight: 600;
    line-height: 1.35;
    word-break: break-word;
}

.elkait-read-next {
    max-width: 1140px;
    margin: 48px auto 0;
    padding: 40px 24px 60px;
    border-top: 1px solid #e2e5ea;
    font-family: 'Poppins', sans-serif;
}

.elkait-read-next-title {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #666666;
    margin: 0 0 28px 0;
}

.elkait-read-next-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.elkait-read-next-grid .elkait-news-card {
    background: #ffffff;
    border: 1px solid #e2e5ea;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.05);
    overflow: hidden;
    transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
    text-decoration: none !important;
    color: inherit;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.elkait-read-next-grid .elkait-news-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 28px rgba(0,0,0,0.10);
    border-color: #0f3460;
}

.elkait-read-next-grid .news-img-wrap {
    height: 220px;
    overflow: hidden;
    background: linear-gradient(135deg, #1a1a2e 0%, #0f3460 100%);
    position: relative;
    flex-shrink: 0;
}

.elkait-read-next-grid .news-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.35s ease;
}

.elkait-read-next-grid .elkait-news-card:hover .news-img-wrap img {
    transform: scale(1.04);
}

.elkait-read-next-grid .news-img-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    color: rgba(255,255,255,0.25);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: 12px;
    text-align: center;
}

.elkait-read-next-grid .news-content {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.elkait-read-next-grid .news-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
    flex-wrap: wrap;
}

.elkait-read-next-grid .news-meta .news-date {
    font-size: 0.82rem;
    color: #999;
    font-weight: 400;
}

.elkait-read-next-grid .news-category-badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    background: transparent;
    border: 1px solid currentColor;
}

.elkait-read-next-grid .news-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: #1a1a2e;
    line-height: 1.35;
    margin: 0 0 10px 0;
    text-transform: none;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.elkait-read-next-grid .news-excerpt {
    font-size: 0.88rem;
    color: #666;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 16px;
}

.elkait-read-next-grid .news-more {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #c8792a;
    margin-top: auto;
}

@media (max-width: 768px) {
    .elkait-post-nav-inner {
        grid-template-columns: 1fr;
    }

    .elkait-post-nav-link--next {
        text-align: left;
        align-items: flex-start;
    }

    .elkait-share-box {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .elkait-share-links {
        flex-wrap: wrap;
        gap: 12px;
    }

    .elkait-read-next-grid {
        grid-template-columns: 1fr;
    }

    .elkait-hero {
        padding: 36px 16px 32px !important;
    }

    .elkait-h2 {
        font-size: 1.65rem;
    }

    .single .entry-content,
    .single .post-content,
    .single article .entry-content {
        padding: 0 16px 40px;
        font-size: 16px;
    }

    .elkait-post-content-wrapper {
        padding: 28px 16px;
    }
}
