/* WD Studios — "Download Smart Transfer" page.
   Studios producer-portal look (see wd-podcasts-v2/assets/css/wdp-portal.css): cream bg, Oswald,
   orange #f26722, white cards with a thin orange-tinted border. All scoped under .wd-st-download. */

.wd-st-download {
    --wdst-orange: #f26722;
    --wdst-orange-hover: #d9551a;
    --wdst-cream: #faebd7;
    --wdst-dark: #1a1a1a;
    --wdst-border: rgba(242, 103, 34, .18);
    --wdst-muted: #6b6b6b;
    font-family: 'Oswald', sans-serif;
    color: var(--wdst-dark);
    max-width: 1100px;
    margin: 0 auto;
    /* Clear the theme's position:absolute .site-header. */
    padding: 130px 24px 80px;
    box-sizing: border-box;
}
.wd-st-download *, .wd-st-download *::before, .wd-st-download *::after { box-sizing: border-box; }

.wd-st-login { font-size: 1.1rem; }
.wd-st-login a { color: var(--wdst-orange); font-weight: 600; }

/* Main panel */
.wd-st-card-main {
    background: #fff;
    border: 1px solid var(--wdst-border);
    border-radius: 14px;
    box-shadow: 0 6px 24px rgba(0, 0, 0, .06);
    padding: clamp(20px, 4vw, 40px);
}

.wd-st-head {
    display: flex;
    align-items: center;
    gap: 14px;
    border-bottom: 1px solid var(--wdst-border);
    padding-bottom: 18px;
    margin-bottom: 22px;
}
.wd-st-cloud { color: var(--wdst-orange); flex: 0 0 auto; }
.wd-st-cloud svg { width: 42px; height: 42px; display: block; }
.wd-st-title {
    margin: 0;
    font-size: clamp(1.6rem, 3.2vw, 2.4rem);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .02em;
    line-height: 1.1;
}

.wd-st-intro { font-size: 1.1rem; font-weight: 400; color: var(--wdst-dark); margin: 0 0 10px; }
.wd-st-intro-2 { color: var(--wdst-muted); margin-bottom: 28px; }

/* OS cards */
.wd-st-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-bottom: 32px;
}
.wd-st-os-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background: var(--wdst-cream);
    border: 1px solid var(--wdst-border);
    border-radius: 12px;
    padding: 28px 20px 24px;
    transition: border-color .2s ease, transform .2s ease;
}
.wd-st-os-card:hover { border-color: var(--wdst-orange); transform: translateY(-2px); }

.wd-st-os-icon { height: 62px; display: flex; align-items: center; justify-content: center; margin-bottom: 14px; }
.wd-st-os-icon svg { width: 54px; height: 54px; display: block; }
.wd-st-os-icon.is-windows { color: #0078d6; }
.wd-st-os-icon.is-silicon { color: var(--wdst-dark); }
.wd-st-os-icon.is-intel   { color: #9aa0a8; }

.wd-st-os-title { margin: 0 0 8px; font-size: 1.4rem; font-weight: 600; }
.wd-st-os-desc { margin: 0 0 22px; font-size: .95rem; color: var(--wdst-muted); flex: 1; }

/* Button — mirrors the portal's .wdp2-btn */
.wd-st-btn {
    display: inline-block;
    width: 100%;
    font-family: inherit;
    font-size: .9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .06em;
    text-decoration: none;
    color: #fff;
    background: var(--wdst-orange);
    border: 2px solid var(--wdst-orange);
    border-radius: 6px;
    padding: 11px 18px;
    transition: background .2s ease, border-color .2s ease;
}
.wd-st-btn:hover { background: var(--wdst-orange-hover); border-color: var(--wdst-orange-hover); color: #fff; }

/* Installation instructions */
.wd-st-instructions {
    background: rgba(242, 103, 34, .06);
    border: 1px solid var(--wdst-border);
    border-radius: 10px;
    padding: 20px 24px;
}
.wd-st-instructions-title {
    display: flex;
    align-items: center;
    gap: 9px;
    margin: 0 0 12px;
    font-size: 1.15rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .04em;
    color: var(--wdst-orange);
}
.wd-st-info { color: var(--wdst-orange); display: inline-flex; }
.wd-st-info svg { width: 22px; height: 22px; display: block; }
.wd-st-instructions ul { margin: 0; padding-left: 20px; }
.wd-st-instructions li { margin-bottom: 10px; font-size: 1rem; line-height: 1.5; }
.wd-st-instructions li:last-child { margin-bottom: 0; }
.wd-st-instructions code {
    background: rgba(0, 0, 0, .06);
    padding: 1px 6px;
    border-radius: 4px;
    font-family: monospace;
    font-size: .9em;
}
.wd-st-muted { color: var(--wdst-muted); font-size: .92rem !important; }

/* Responsive: stack to one column on narrow screens. */
@media (max-width: 760px) {
    .wd-st-grid { grid-template-columns: 1fr; }
    .wd-st-download { padding-top: 110px; }
}
