/* Homepage Standalone Styles - This is the Cruise */

.no-sidebar #main-content {
    margin-left: auto !important;
    margin-right: auto !important;
    padding: 48px 24px;
    max-width: 1200px;
}

.no-sidebar .filters-sidebar {
    display: none !important;
}

/* Hero Section */
.home-hero {
    text-align: center;
    margin-bottom: 64px;
    padding: 24px 20px;
}

.home-hero-logo {
    width: 100px;
    height: 100px;
    margin-bottom: 20px;
    object-fit: contain;
}

.home-hero-title {
    font-size: 2.75rem;
    font-weight: 800;
    color: var(--text-main);
    margin: 0 0 12px 0;
    letter-spacing: -0.03em;
    font-family: 'Inter', sans-serif;
}

.home-hero-subtitle {
    font-size: 1.15rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.home-divider {
    width: 64px;
    height: 4px;
    background-color: var(--primary-blue);
    margin: 20px auto 0 auto;
    border-radius: 2px;
}

/* Post Feed */
.post-feed {
    display: flex;
    flex-direction: column;
    gap: 80px;
    margin-bottom: 96px;
    padding: 0 16px;
}

.post-card {
    display: flex;
    flex-direction: column;
    gap: 32px;
    align-items: stretch;
}

.post-main-content {
    display: flex;
    flex-direction: column;
    gap: 32px;
    align-items: stretch;
}

@media (min-width: 768px) {
    .post-main-content {
        flex-direction: row;
        align-items: flex-start;
    }

    .post-main-content.reverse {
        flex-direction: row-reverse;
    }

    .post-main-content>div {
        flex: 1;
        width: 50%;
    }
}

/* Video Aspect Frame */
.post-video-container {
    width: 100%;
    aspect-ratio: 16 / 9;
    background-color: #000;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    position: relative;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.post-video-container:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.post-video-iframe {
    width: 100%;
    height: 100%;
    border: 0;
    position: absolute;
    top: 0;
    left: 0;
}

/* Post Content */
.post-header {
    margin-bottom: 8px;
}

.post-content-container {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.post-meta {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.post-title {
    font-size: 1.75rem;
    font-weight: 700;
    line-height: 1.3;
    color: var(--text-main);
    margin: 0 0 16px 0;
    letter-spacing: -0.02em;
}

.post-body {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-muted);
    margin-bottom: 24px;
}

.post-body p {
    margin-bottom: 12px;
}

.post-body p:last-child {
    margin-bottom: 0;
}

.post-body a {
    color: var(--md-sys-color-primary);
    text-decoration: underline;
    font-weight: 600;
}

.post-body a:hover {
    color: var(--primary-blue);
}

/* Related Items Badges */
.post-relations {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-top: 24px;
    border-top: 1px dashed var(--border-color);
    padding-top: 24px;
}

@media (min-width: 768px) {
    .post-relations {
        display: grid;
        grid-template-columns: 1fr 1fr 1fr;
        gap: 24px;
    }
}

.relation-column {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
    align-content: flex-start;
}

.badge-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background-color: var(--md-sys-color-surface-container);
    color: var(--md-sys-color-primary);
    text-decoration: none;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    border: 1px solid var(--border-color);
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.badge-link:hover {
    background-color: var(--md-sys-color-primary-container);
    color: var(--md-sys-color-on-primary-container);
    border-color: var(--md-sys-color-primary);
    transform: translateY(-1px);
}

.badge-link span.material-symbols-outlined {
    font-size: 16px;
}

/* Membership Tiers Section */
.membership-section {
    border-top: 1px solid var(--border-color);
    padding-top: 64px;
    margin-top: 64px;
    text-align: center;
    margin-bottom: 64px;
}

.membership-title {
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--text-main);
    margin: 0 0 12px 0;
    letter-spacing: -0.02em;
}

.membership-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto 40px auto;
    line-height: 1.5;
}

.shipmate-card {
    background: #ffffff;
    border-radius: 24px;
    border: 2px solid var(--border-color);
    max-width: 440px;
    margin: 0 auto;
    padding: 40px 32px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    position: relative;
    overflow: hidden;
    text-align: center;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.shipmate-card:hover {
    transform: translateY(-4px);
    border-color: var(--md-sys-color-primary);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
}

.shipmate-badge {
    position: absolute;
    top: 0;
    right: 0;
    background-color: var(--md-sys-color-primary);
    color: #ffffff;
    padding: 6px 16px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    border-bottom-left-radius: 16px;
}

.shipmate-icon {
    font-size: 3.5rem !important;
    color: var(--md-sys-color-primary);
    margin-bottom: 16px;
}

.shipmate-tier-name {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--text-main);
    margin: 0 0 8px 0;
}

.shipmate-price {
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--text-main);
    margin-bottom: 24px;
}

.shipmate-price span {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-muted);
}

.shipmate-features {
    list-style: none;
    padding: 0;
    margin: 0 auto 32px auto;
    text-align: left;
    max-width: 280px;
}

.shipmate-features li {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
}

.shipmate-features li span.material-symbols-outlined {
    color: #10b981;
    /* Emerald green check */
    font-size: 20px;
    font-weight: 700;
}

.shipmate-cta {
    display: block;
    width: 100%;
    background-color: #D84A70;
    /* YouTube Red */
    color: #ffffff;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 700;
    padding: 16px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(255, 0, 0, 0.15);
    transition: background-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
    box-sizing: border-box;
}

.shipmate-cta:hover {
    background-color: #8D0A3B;
    box-shadow: 0 6px 20px rgba(255, 0, 0, 0.25);
}

.shipmate-cta:active {
    transform: scale(0.98);
}

/* Empty State */
.empty-feed {
    text-align: center;
    padding: 48px;
    background-color: var(--md-sys-color-surface-container);
    border-radius: 16px;
    border: 1px dashed var(--border-color);
}

.empty-feed-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 8px;
}

.empty-feed-text {
    color: var(--text-muted);
    margin-bottom: 24px;
}