body {
    margin: 0;
}

.container {
    display: flex;
    height: 100vh;
    overflow: hidden;
}

.sidebar {
    width: 250px;
    background-color: #000;
    color: black;
    padding: 50px;
    flex-shrink: 0;
}

.sidebar p{
    font-family: 'Segoe UI', Arial, sans-serif;
    font-weight: 350;
    letter-spacing: 1px;
    color: white;
    font-size: 25px;
    line-height: 1.5;
}

.sidebar a {
    font-family: 'Segoe UI', Arial, sans-serif;
    font-weight: 200;
    margin: 20px;
    color: white;
    font-size: 20px;
    line-height: 2;
    text-decoration: none;
}

.content-container {
    flex-grow: 1;
    overflow-y: auto;
    padding: 0px;
}

@media (prefers-reduced-motion: no-preference) {
    .content-container {
        scroll-behavior: smooth;
    }
}

.content {
    padding: clamp(1rem, 3vw, 1rem) clamp(1rem, 3vw, 2.5rem);
}

.content-white {
    background-color: white;
}

.content-dark {
    background-color: #1c1c1c;
}

.content-text, .block-text {
    font-family: 'Segoe UI', Arial, sans-serif;
    line-height: 2;
}

.text-white {
    color: white;
}

.text-black {
    color: black;
}
.text-orange {
    color: rgb(255, 115, 0);
}

.content-text {
    padding: 0px;
}

.block-text {
    padding: 0px 0px 0px 30px;
}



.banner {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.content-banner {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: left center;
    display: block;
}

.banner-text {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: clamp(1rem, 3vw, 2rem) clamp(1rem, 3vw, 2.5rem);
    box-sizing: border-box;
    font-family: 'Segoe UI', Arial, sans-serif;
    color: #fff;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.6);
}

.banner-title {
    margin: 0 0 0.35rem;
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    font-weight: 700;
    letter-spacing: 0.02em;
}

/* Lighter weight for part of the title (wrap in <span class="banner-title-light">…</span>) */
.banner-title .banner-title-light {
    font-size: clamp(1rem, 2vw, 2.75rem);
    font-weight: 300;
}

.banner-subtitle,
.banner-meta {
    margin: 0;
    font-size: clamp(0.85rem, 2vw, 1.35rem);
    line-height: 1.35;
}

.banner-subtitle {
    margin-bottom: 0.15rem;
    font-weight: 500;
}

.banner-meta {
    font-weight: 400;
}

.section-divider {
    background-color: black;
}

.section-divider-text {
    margin: 0;
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: clamp(1rem, 3vw, 1rem) clamp(1rem, 3vw, 2.5rem);
    box-sizing: border-box;
    font-family: 'Segoe UI', Arial, sans-serif;
    font-size: clamp(1.5rem, 4vw, 2.75rem);
    color: #fff;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.6);
}

/* Tools section: headline + text/image row (bottom-aligned) + full-width screenshot */
.tool-showcase {
    padding: clamp(1.25rem, 3vw, 2.25rem) clamp(1rem, 3vw, 2.5rem);
    background-color: #0b0b0b;
    font-family: 'Segoe UI', Arial, sans-serif;
    color: #fff;
}

.tool-heading {
    margin: 0 0 clamp(1rem, 2.5vw, 1.5rem);
    font-size: clamp(1.5rem, 3.5vw, 2.25rem);
    font-weight: 700;
    letter-spacing: 0.02em;
    line-height: 1.2;
}

.tool-split {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    gap: clamp(1rem, 3vw, 2rem);
    margin-bottom: clamp(1rem, 2.5vw, 1.75rem);
}

.tool-body {
    flex: 1 1 18rem;
    min-width: min(100%, 16rem);
    line-height: 1.65;
    font-size: clamp(0.95rem, 1.8vw, 1.05rem);
}

.tool-body p {
    margin: 0 0 1.25rem;
}

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

.tool-figure {
    flex: 0 1 27rem;
    margin: 0;
    max-width: 100%;
    align-self: flex-end;
}

.tool-figure img {
    display: block;
    width: auto;
    height: auto;
    max-height: clamp(10rem, 28vw, 15rem);
    max-width: 100%;
    object-fit: contain;
}

.tool-wide {
    margin: 0;
}

.tool-wide img {
    display: block;
    width: 100%;
    height: auto;
}

@media (max-width: 720px) {
    .tool-split {
        align-items: flex-start;
    }
}