/* ==========================================================================
   Media Kit Header
   ========================================================================== */
.media-kit-header {
    padding: 6rem 2rem;
    text-align: center;
    background: white;
}

.media-kit-header h1 {
    font-size: 3rem;
    font-weight: 800;
    color: #1e40af;
    margin-bottom: 1.5rem;
}

.media-kit-header p {
    font-size: 1.25rem;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto 2rem;
}

/* ==========================================================================
   Download Section
   ========================================================================== */
.download-section {
    padding: 4rem 2rem;
    background: #f8fafc;
}

.download-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.download-card {
    background: white;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.download-preview {
    aspect-ratio: 16/9;
    background: #f1f5f9;
    position: relative;
}

.download-preview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.download-content {
    padding: 2rem;
}

.download-button {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: #2563eb;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    text-decoration: none;
    font-weight: 500;
    margin-top: 1rem;
    transition: all 0.2s ease;
}

.download-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* ==========================================================================
   Copy Blocks
   ========================================================================== */
.copy-blocks {
    padding: 4rem 2rem;
    background: white;
}

.copy-section {
    max-width: 800px;
    margin: 0 auto;
}

.copy-block {
    background: #f8fafc;
    border-radius: 1rem;
    padding: 2rem;
    margin-bottom: 2rem;
}

.copy-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #e5e7eb;
}

.copy-header h3 {
    color: #1e40af;
    font-size: 1.25rem;
    font-weight: 600;
}

.copy-all {
    background: none;
    border: 1px solid #e5e7eb;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    color: #64748b;
    cursor: pointer;
    transition: all 0.2s ease;
}

.copy-all:hover {
    background: #f1f5f9;
    color: #2563eb;
}

.copy-item {
    position: relative;
    padding: 1.5rem;
    background: white;
    border-radius: 0.5rem;
    margin-bottom: 1rem;
}

.copy-button {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    color: #64748b;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 0.5rem;
    transition: all 0.2s ease;
}

.copy-button:hover {
    background: #f1f5f9;
    color: #2563eb;
}

/* ==========================================================================
   Responsive Design
   ========================================================================== */
@media (max-width: 1024px) {
    .download-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .media-kit-header h1 {
        font-size: 2rem;
    }

    .copy-header {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .copy-item {
        padding: 1.5rem 1rem;
    }
} 