.customizableBlazerPage {
    width: 100%;
    padding: 40px 20px 60px;
    background: #f7f7f7;
}

.customizableBlazerPageContainer {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
}

.customizableBlazerPageTop {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 24px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.customizableBlazerPageTopText {
    max-width: 800px;
}

.customizableBlazerPageEyebrow {
    margin: 0 0 10px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #8b6b3f;
}

.customizableBlazerPageTopText h1 {
    margin: 0 0 12px;
    font-size: 42px;
    line-height: 1.1;
    color: #232323;
}

.customizableBlazerPageIntro {
    margin: 0;
    font-size: 17px;
    line-height: 1.6;
    color: #555;
}

.customizableBlazerPageActions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.customizableBlazerPdfSection {
    width: 100%;
}

.customizableBlazerPdfViewer {
    width: 100%;
    height: calc(100vh - 220px);
    min-height: 720px;
    background: #ffffff;
    border: 1px solid #ddd;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}

.customizableBlazerPdfViewer iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

@media (max-width: 992px) {
    .customizableBlazerPage {
        padding: 30px 16px 40px;
    }

    .customizableBlazerPageTopText h1 {
        font-size: 34px;
    }

    .customizableBlazerPdfViewer {
        height: calc(100vh - 180px);
        min-height: 620px;
    }
}

@media (max-width: 768px) {
    .customizableBlazerPageTop {
        align-items: flex-start;
    }

    .customizableBlazerPageTopText h1 {
        font-size: 28px;
    }

    .customizableBlazerPageIntro {
        font-size: 15px;
    }

    .customizableBlazerPdfViewer {
        min-height: 520px;
        height: 75vh;
        border-radius: 12px;
    }
}