/* Container Layout Grid */
.release-hub {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 32px;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    box-sizing: border-box;
}

/* Left Accordion Sidebar Styles */
.release-sidebar {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 16px;
    position: sticky;
    top: 40px;
    align-self: start;
}

.release-sidebar__group {
    margin-bottom: 6px;
}

.release-sidebar__group-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    padding: 12px 14px;
    cursor: pointer;
    list-style: none;
    user-select: none;
}

.release-sidebar__group-title::-webkit-details-marker {
    display: none;
}

.release-sidebar__caret {
    transform: rotate(-90deg);
    transition: transform 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    color: rgba(255, 255, 255, 0.4);
}

.release-sidebar__group[open] .release-sidebar__caret {
    transform: rotate(0deg);
    color: #00a4de;
}

.release-sidebar__list {
    list-style: none;
    padding: 4px 0 0 0;
    margin: 0;
}

.release-sidebar__item {
    margin: 4px 0;
}

.release-sidebar__trigger {
    display: flex;
    align-items: center;
    width: 100%;
    background: none;
    border: none;
    padding: 10px 14px;
    border-radius: 8px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.55);
    text-align: left;
    cursor: pointer;
    transition: all 0.2s ease;
}

.release-sidebar__trigger:hover {
    background: rgba(255, 255, 255, 0.03);
    color: #ffffff;
}

.release-sidebar__indicator {
    width: 3px;
    height: 14px;
    margin-right: 10px;
    background: transparent;
    border-radius: 2px;
    transform: scaleY(0);
    transition: transform 0.2s ease, background-color 0.2s ease;
}

/* Active Navigation Highlighting */
.release-sidebar__trigger.is-active {
    background: rgba(0, 164, 222, 0.08);
    color: #00a4de;
    font-weight: 500;
}

.release-sidebar__trigger.is-active .release-sidebar__indicator {
    background: #00a4de;
    transform: scaleY(1);
    box-shadow: 0 0 8px rgba(0, 164, 222, 0.5);
}

/* Right Card Layout Panels */
.release-panel {
    display: none;
}

.release-panel.is-active {
    display: block;
    animation: panelReveal 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes panelReveal {
    from { opacity: 0; transform: translateY(6px); }
    to { opacity: 1; transform: translateY(0); }
}

.release-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 32px;
}

.release-card__header {
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    padding-bottom: 18px;
    margin-bottom: 24px;
}

.release-card__main-title {
    font-size: 24px;
    font-weight: 600;
    color: #ffffff;
    margin: 0;
}

/* Rich Text Inside Formatting Rules */
.release-card__content h3 {
    font-size: 20px;
    font-weight: 600;
    color: #ffffff;
    margin: 0 0 14px 0;
}

.release-card__content p {
    font-size: 15px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.75);
    margin: 0 0 16px 0;
}

.release-card__meta-links {
    margin-bottom: 28px;
}

.release-card__press-link {
    color: #00a4de;
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
}

.release-card__press-link:hover {
    text-decoration: underline;
}

/* Bottom Download Box Components */
.release-download-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #0c0c34;
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 10px;
    padding: 20px 24px;
    margin-top: 24px;
}

.release-download-bar__heading {
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
    margin: 0 0 4px 0;
}

.release-download-bar__sub {
    font-size: 12px;
    color: #e9ecf1
    margin: 0;
}

.release-download-btn {
    display: inline-block;
    background: #00b5ff;
    color: #05254a !important;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none !important;
    padding: 8px 24px;
    border-radius: 24px;
    transition: background-color 0.2s ease;
}

.release-download-btn:hover {
    background: #008ebf;
}

/* Media/Image Field Container Styling */
.release-card__visual-showcase {
    margin-top: 32px;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.06);
    background: rgba(0, 0, 0, 0.2);
}

.release-card__visual-showcase img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
}

.release-download-bar__right {
  visibility: hidden;
}

/* Responsive Breakdown */
@media (max-width: 768px) {
    .release-hub {
        grid-template-columns: 1fr;
    }
    .release-download-bar {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }
    .release-download-btn {
        width: 100%;
        text-align: center;
    }
}