/* ==========================================================
   PDF DIMENSION CHECKER
   SINGLE COLUMN TOOL LAYOUT
   ========================================================== */

:root {
    --pi-blue: #1677ff;
    --pi-blue-dark: #0d5fd7;
    --pi-blue-light: #eaf3ff;
    --pi-text: #12233f;
    --pi-muted: #64748b;
    --pi-border: #dce6f2;
    --pi-bg: #f7faff;
    --pi-white: #ffffff;
    --pi-green: #12a66a;
    --pi-orange: #f59e0b;
    --pi-red: #ef4444;
}


/* ==========================================================
   GLOBAL
   ========================================================== */

.pdf-dimension-tool {
    width: 100%;
    background: #ffffff;
    color: var(--pi-text);
    overflow: hidden;
}

.pdf-dimension-tool *,
.pdf-dimension-tool *::before,
.pdf-dimension-tool *::after {
    box-sizing: border-box;
}

.pdf-dimension-tool .container {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
}


/* ==========================================================
   HERO
   ========================================================== */

.dimension-hero {
    position: relative;
    padding: 70px 0 80px;
    background:
        radial-gradient(
            circle at 50% 0%,
            rgba(22,119,255,.10),
            transparent 38%
        ),
        linear-gradient(
            180deg,
            #f8fbff 0%,
            #ffffff 100%
        );
}

.dimension-hero::before {
    content: "";
    position: absolute;
    width: 240px;
    height: 240px;
    right: -80px;
    top: 60px;
    background-image:
        radial-gradient(
            #b9d8ff 1.5px,
            transparent 1.5px
        );
    background-size: 12px 12px;
    opacity: .45;
    pointer-events: none;
}


/* ==========================================================
   IMPORTANT:
   FORCE HERO INTO ONE COLUMN
   ========================================================== */

.dimension-hero-grid {
    position: relative;

    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: flex-start !important;

    width: 100%;
    max-width: 1000px;

    margin: 0 auto;

    gap: 34px !important;
}


/* ==========================================================
   HERO CONTENT
   ========================================================== */

.dimension-hero-copy {
    width: 100%;
    max-width: 800px;

    margin: 0 auto;

    text-align: center !important;
}


/* ==========================================================
   EYEBROW
   ========================================================== */

.dimension-eyebrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;

    padding: 8px 14px;
    margin-bottom: 20px;

    border-radius: 999px;

    background: #eaf3ff;
    color: #1668d9;

    font-size: 13px;
    font-weight: 800;
}

.dimension-eyebrow::before {
    content: "✓";

    width: 17px;
    height: 17px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #1677ff;
    color: #ffffff;

    font-size: 10px;
}


/* ==========================================================
   HERO TITLE
   ========================================================== */

.dimension-hero-copy h1 {
    width: 100%;
    max-width: 850px;

    margin: 0 auto;

    font-size: clamp(42px, 5vw, 64px);
    line-height: 1.05;

    letter-spacing: -2.2px;

    font-weight: 850;

    color: #10213c;

    text-align: center;
}

.dimension-hero-copy h1 span {
    color: var(--pi-blue);
}


/* ==========================================================
   HERO DESCRIPTION
   ========================================================== */

.dimension-hero-copy > p {
    width: 100%;
    max-width: 720px;

    margin: 22px auto 22px;

    font-size: 18px;
    line-height: 1.7;

    color: #667892;

    text-align: center;
}


/* ==========================================================
   TRUST ROW
   ========================================================== */

.dimension-trust-row {
    width: 100%;

    display: flex;
    flex-wrap: wrap;

    align-items: center;
    justify-content: center;

    gap: 18px;

    margin: 0 auto;
}

.dimension-trust-item {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 7px;

    color: #53657d;

    font-size: 13px;
    font-weight: 700;
}

.dimension-trust-item strong {
    color: #1677ff;
}


/* ==========================================================
   HERO TOOL
   ========================================================== */

.dimension-hero-tool {
    position: relative;

    width: 100%;
    max-width: 760px;

    margin: 0 auto;

    padding: 28px;

    border: 1px solid #e0e9f4;
    border-radius: 20px;

    background: rgba(255,255,255,.97);

    box-shadow:
        0 20px 55px rgba(25,75,130,.12);
}


/* ==========================================================
   TOOL HEADER
   ========================================================== */

.dimension-hero-tool-header {
    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 15px;

    margin-bottom: 22px;
}

.dimension-file-title {
    display: flex;

    align-items: center;

    gap: 12px;
}

.dimension-pdf-mini-icon {
    width: 44px;
    height: 52px;

    display: flex;
    align-items: center;
    justify-content: center;

    flex-shrink: 0;

    border: 2px solid #ff5b67;
    border-radius: 8px;

    color: #ff5b67;

    font-size: 10px;
    font-weight: 900;

    background: #fff7f8;
}

.dimension-file-title strong {
    display: block;

    font-size: 15px;

    color: #16243a;
}

.dimension-file-title span {
    display: block;

    margin-top: 3px;

    color: #8190a4;

    font-size: 12px;
}

.dimension-status {
    flex-shrink: 0;

    padding: 7px 11px;

    border-radius: 999px;

    background: #eafaf3;

    color: #159968;

    font-size: 11px;
    font-weight: 800;
}


/* ==========================================================
   UPLOAD FORM
   ========================================================== */

.dimension-upload-form {
    width: 100%;
}


/* ==========================================================
   UPLOAD AREA
   ========================================================== */

.dimension-upload-box {
    position: relative;

    width: 100%;
    min-height: 190px;

    display: flex;
    align-items: center;
    justify-content: center;

    text-align: center;

    padding: 28px;

    border: 1.5px dashed #8cbcff;
    border-radius: 14px;

    background: #f9fcff;

    cursor: pointer;

    transition:
        border-color .2s ease,
        background .2s ease,
        transform .2s ease;
}

.dimension-upload-box:hover,
.dimension-upload-box.dragging {
    border-color: #1677ff;

    background: #f0f7ff;
}


/* ==========================================================
   UPLOAD CONTENT
   ========================================================== */

.dimension-upload-content {
    width: 100%;
    text-align: center;
}

.dimension-upload-content h3 {
    margin: 0 0 7px;

    color: #14253f;

    font-size: 17px;
}

.dimension-upload-content p {
    margin: 0 0 8px;

    color: #718198;

    font-size: 13px;
}

.dimension-upload-or {
    display: block;

    margin-bottom: 10px;

    color: #a0adbc;

    font-size: 12px;
}

.dimension-browse-button {
    border: 0;

    border-radius: 8px;

    padding: 11px 18px;

    background:
        linear-gradient(
            135deg,
            #1677ff,
            #0865e8
        );

    color: #ffffff;

    font-size: 13px;
    font-weight: 800;

    cursor: pointer;

    box-shadow:
        0 7px 18px rgba(22,119,255,.23);
}

.dimension-upload-content small {
    display: block;

    margin-top: 10px;

    color: #9aa7b7;

    font-size: 11px;
}


/* ==========================================================
   SELECTED FILE
   ========================================================== */

.dimension-selected-file {
    display: flex;

    align-items: center;

    gap: 12px;

    margin-top: 13px;

    padding: 12px;

    border: 1px solid #dbe7f3;
    border-radius: 11px;

    background: #ffffff;
}

.dimension-selected-icon {
    width: 40px;
    height: 42px;

    display: flex;
    align-items: center;
    justify-content: center;

    flex-shrink: 0;

    border-radius: 8px;

    background: #fff0f2;

    color: #f04452;

    font-size: 10px;
    font-weight: 900;
}

.dimension-selected-info {
    flex: 1;

    min-width: 0;
}

.dimension-selected-info strong {
    display: block;

    overflow: hidden;

    text-overflow: ellipsis;

    white-space: nowrap;

    color: #18283f;

    font-size: 13px;
}

.dimension-selected-info span {
    display: block;

    margin-top: 3px;

    color: #8290a2;

    font-size: 11px;
}

.dimension-remove-file {
    width: 30px;
    height: 30px;

    border: 0;
    border-radius: 50%;

    background: #f3f6f9;

    color: #66778c;

    font-size: 20px;

    line-height: 1;

    cursor: pointer;
}


/* ==========================================================
   CHECK BUTTON
   ========================================================== */

.dimension-check-button {
    width: 100%;

    display: flex;

    align-items: center;
    justify-content: center;

    gap: 12px;

    margin-top: 14px;

    padding: 14px 18px;

    border: 0;
    border-radius: 10px;

    background:
        linear-gradient(
            135deg,
            #1677ff,
            #0967eb
        );

    color: #ffffff;

    font-size: 14px;
    font-weight: 800;

    cursor: pointer;

    box-shadow:
        0 9px 22px rgba(22,119,255,.20);

    transition:
        transform .2s ease,
        opacity .2s ease;
}

.dimension-check-button:hover {
    transform: translateY(-1px);
}

.dimension-check-button:disabled {
    opacity: .65;

    cursor: wait;
}

.dimension-check-button strong {
    font-size: 18px;
}


/* ==========================================================
   LOCAL NOTE
   ========================================================== */

.dimension-local-note {
    display: flex;

    align-items: center;
    justify-content: center;

    gap: 6px;

    margin-top: 12px;

    color: #8a98aa;

    font-size: 11px;

    text-align: center;
}


/* ==========================================================
   MAIN TOOL SECTION
   ========================================================== */

.pdf-dimension-checker-section {
    padding: 75px 0;

    background: #ffffff;
}

.dimension-tool-card {
    width: 100%;
    max-width: 1100px;

    margin: 0 auto;

    padding: 34px;

    border: 1px solid #e0e8f2;
    border-radius: 22px;

    background: #ffffff;

    box-shadow:
        0 12px 35px rgba(18,35,63,.08);
}

.dimension-tool-header {
    text-align: center;

    margin-bottom: 28px;
}

.checker-small-label,
.tool-label {
    display: inline-block;

    margin-bottom: 9px;

    color: #1677ff;

    font-size: 11px;
    font-weight: 900;

    letter-spacing: .8px;
}

.dimension-tool-header h2 {
    margin: 0;

    color: #13243d;

    font-size: 31px;
    line-height: 1.2;

    text-align: center;
}

.dimension-tool-header p {
    max-width: 650px;

    margin: 11px auto 0;

    color: #718096;

    font-size: 15px;
    line-height: 1.65;

    text-align: center;
}


/* ==========================================================
   LOADING
   ========================================================== */

.dimension-loading {
    display: flex;

    align-items: center;
    justify-content: center;

    gap: 14px;

    margin-top: 20px;

    padding: 18px;

    border: 1px solid #dbe8f6;
    border-radius: 12px;

    background: #f8fbff;
}

.dimension-spinner {
    width: 27px;
    height: 27px;

    border: 3px solid #dceaff;
    border-top-color: #1677ff;

    border-radius: 50%;

    animation:
        dimensionSpin .8s linear infinite;
}

@keyframes dimensionSpin {
    to {
        transform: rotate(360deg);
    }
}

.dimension-loading strong {
    display: block;

    color: #1b2c43;

    font-size: 14px;
}

.dimension-loading p {
    margin: 3px 0 0;

    color: #8090a4;

    font-size: 12px;
}


/* ==========================================================
   ERROR
   ========================================================== */

.dimension-error {
    margin-top: 15px;

    padding: 13px 15px;

    border: 1px solid #ffd1d5;
    border-radius: 10px;

    background: #fff6f7;

    color: #c8323d;

    font-size: 13px;

    line-height: 1.5;
}


/* ==========================================================
   RESULTS
   ========================================================== */

.dimension-results {
    margin-top: 35px;

    padding-top: 30px;

    border-top: 1px solid #e7edf4;
}

.dimension-results-header {
    display: flex;

    align-items: flex-start;
    justify-content: space-between;

    gap: 20px;

    margin-bottom: 22px;
}

.dimension-results-header span:first-child {
    display: block;

    color: #1677ff;

    font-size: 10px;
    font-weight: 900;

    letter-spacing: .8px;
}

.dimension-results-header h3 {
    margin: 5px 0 5px;

    color: #152640;

    font-size: 24px;
}

.dimension-results-header p {
    margin: 0;

    color: #738298;

    font-size: 13px;
}

.dimension-checked-badge {
    flex-shrink: 0;

    padding: 7px 12px;

    border-radius: 999px;

    background: #e9faf2;

    color: #149966;

    font-size: 10px;
    font-weight: 900;
}


/* ==========================================================
   SUMMARY
   ========================================================== */

.dimension-summary-grid {
    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 14px;

    margin-bottom: 14px;
}

.dimension-summary-card {
    min-width: 0;

    padding: 17px;

    border: 1px solid #e4ebf3;
    border-radius: 13px;

    background: #fbfdff;
}

.dimension-summary-card small {
    display: block;

    margin-bottom: 5px;

    color: #8795a8;

    font-size: 10px;
    font-weight: 700;
}

.dimension-summary-card strong {
    display: block;

    color: #16243a;

    font-size: 13px;

    line-height: 1.25;
}

.dimension-summary-card.is-blue strong {
    color: #1677ff;
}

.dimension-summary-card.is-orange strong {
    color: #e89100;
}

.dimension-summary-card.is-red strong {
    color: #ef4444;
}


/* ==========================================================
   RESULT SUMMARY CARD
   ========================================================== */

.dimension-results .dimension-summary-grid {
    grid-template-columns:
        repeat(4, 1fr);

    gap: 14px;
}

.dimension-results .dimension-summary-card {
    display: flex;

    align-items: center;

    gap: 12px;

    padding: 17px;

    border-radius: 13px;

    background: #fbfdff;
}

.summary-card-icon {
    width: 39px;
    height: 39px;

    display: flex;

    align-items: center;
    justify-content: center;

    flex-shrink: 0;

    border-radius: 10px;

    background: #eaf3ff;

    color: #1677ff;

    font-weight: 900;
}

.dimension-results .dimension-summary-card small {
    margin-bottom: 4px;
}


/* ==========================================================
   UNIT GRID
   ========================================================== */

.dimension-unit-grid {
    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 14px;

    margin-top: 14px;
}

.dimension-unit-card {
    padding: 17px;

    border: 1px solid #e1e9f2;
    border-radius: 13px;

    background: #ffffff;
}

.dimension-unit-card span {
    display: block;

    margin-bottom: 6px;

    color: #8290a2;

    font-size: 11px;
    font-weight: 700;
}

.dimension-unit-card strong {
    color: #162740;

    font-size: 15px;
}


/* ==========================================================
   MIXED NOTICE
   ========================================================== */

.mixed-size-notice {
    margin-top: 15px;

    padding: 14px 16px;

    border-radius: 11px;

    font-size: 13px;

    line-height: 1.55;
}

.mixed-size-notice.is-mixed {
    border: 1px solid #ffd8a0;

    background: #fff9ed;

    color: #a56700;
}

.mixed-size-notice.is-uniform {
    border: 1px solid #c9efdc;

    background: #f0fbf5;

    color: #198653;
}


/* ==========================================================
   DETAILS
   ========================================================== */

.dimension-details {
    margin-top: 28px;

    border: 1px solid #e0e8f2;

    border-radius: 15px;

    overflow: hidden;
}

.dimension-details-header {
    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 15px;

    padding: 19px 20px;

    background: #f8fbff;

    border-bottom: 1px solid #e0e8f2;
}

.dimension-details-header div span {
    display: block;

    color: #1677ff;

    font-size: 9px;
    font-weight: 900;

    letter-spacing: .8px;
}

.dimension-details-header h4 {
    margin: 4px 0 0;

    color: #182941;

    font-size: 17px;
}

.dimension-details-header > span {
    color: #8492a4;

    font-size: 10px;
    font-weight: 800;
}


/* ==========================================================
   TABLE
   ========================================================== */

.dimension-table-wrap {
    width: 100%;

    overflow-x: auto;
}

.dimension-table {
    width: 100%;

    min-width: 820px;

    border-collapse: collapse;

    background: #ffffff;
}

.dimension-table th {
    padding: 13px 14px;

    border-bottom: 1px solid #e2e9f1;

    background: #fbfdff;

    color: #65748a;

    font-size: 11px;
    font-weight: 800;

    text-align: left;

    white-space: nowrap;
}

.dimension-table td {
    padding: 14px;

    border-bottom: 1px solid #edf1f5;

    color: #56667c;

    font-size: 12px;

    white-space: nowrap;
}

.dimension-table tbody tr:last-child td {
    border-bottom: 0;
}

.dimension-table tbody tr:hover {
    background: #fafdff;
}

.dimension-table td strong {
    color: #1b2c43;
}

.dimension-value {
    font-size: 12px;
}

.dimension-x {
    color: #9aa7b8;

    padding: 0 3px;
}

.dimension-orientation-badge {
    display: inline-block;

    padding: 5px 8px;

    border-radius: 999px;

    background: #eaf3ff;

    color: #1677ff;

    font-size: 10px;
    font-weight: 800;
}

.dimension-no-results {
    padding: 30px !important;

    text-align: center !important;

    color: #8a98aa !important;
}


/* ==========================================================
   QUICK ANSWER
   ========================================================== */

.tool-answer-section {
    padding: 70px 0;

    background: #f7faff;
}

.tool-answer-box {
    max-width: 900px;

    margin: 0 auto;

    padding: 40px;

    border: 1px solid #e1e9f2;
    border-radius: 20px;

    background: #ffffff;

    box-shadow:
        0 10px 30px rgba(20,50,90,.05);
}

.tool-answer-box h2 {
    margin: 0 0 16px;

    color: #14253f;

    font-size: 30px;
}

.tool-answer-box p {
    margin: 0 0 14px;

    color: #65758a;

    font-size: 16px;

    line-height: 1.8;
}

.tool-answer-box p:last-child {
    margin-bottom: 0;
}


/* ==========================================================
   ARTICLE
   ========================================================== */

.tool-content-section {
    padding: 75px 0;

    background: #ffffff;
}

.tool-article {
    max-width: 900px;

    margin: 0 auto;
}

.tool-article h2 {
    margin: 48px 0 15px;

    color: #14253f;

    font-size: 29px;

    line-height: 1.25;
}

.tool-article h2:first-child {
    margin-top: 0;
}

.tool-article h3 {
    margin: 30px 0 12px;

    color: #1c3555;

    font-size: 21px;
}

.tool-article p {
    margin: 0 0 17px;

    color: #596b82;

    font-size: 16px;

    line-height: 1.82;
}

.tool-article ul,
.tool-article ol {
    margin: 15px 0 24px;

    padding-left: 24px;
}

.tool-article li {
    margin-bottom: 9px;

    color: #596b82;

    font-size: 16px;

    line-height: 1.7;
}

.tool-article a {
    color: #126fe9;

    font-weight: 700;
}


/* ==========================================================
   ARTICLE TABLE
   ========================================================== */

.tool-table-wrapper {
    width: 100%;

    margin: 25px 0 35px;

    overflow-x: auto;

    border: 1px solid #e0e8f2;

    border-radius: 14px;
}

.tool-table {
    width: 100%;

    min-width: 650px;

    border-collapse: collapse;
}

.tool-table th {
    padding: 14px;

    background: #f3f7fc;

    color: #40546c;

    font-size: 13px;

    text-align: left;
}

.tool-table td {
    padding: 14px;

    border-top: 1px solid #e5ebf2;

    color: #607188;

    font-size: 14px;

    vertical-align: top;
}


/* ==========================================================
   ORIENTATION CARDS
   ========================================================== */

.orientation-cards {
    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap: 18px;

    margin: 25px 0 35px;
}

.orientation-card {
    padding: 25px;

    border: 1px solid #e0e8f2;

    border-radius: 15px;

    background: #fbfdff;
}

.orientation-icon {
    display: inline-flex;

    width: 42px;
    height: 42px;

    align-items: center;
    justify-content: center;

    margin-bottom: 12px;

    border-radius: 10px;

    background: #eaf3ff;

    color: #1677ff;

    font-size: 20px;
    font-weight: 900;
}

.orientation-card h3 {
    margin-top: 0;
}

.orientation-card p {
    font-size: 14px;
}


/* ==========================================================
   FINAL CTA
   ========================================================== */

.tool-final-cta {
    padding: 60px 0;

    background: #f7faff;
}

.tool-final-box {
    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 30px;

    padding: 35px 40px;

    border-radius: 20px;

    background:
        radial-gradient(
            circle at 90% 20%,
            rgba(255,255,255,.22),
            transparent 30%
        ),
        linear-gradient(
            135deg,
            #116ff1,
            #0759c9
        );

    box-shadow:
        0 20px 40px rgba(13,95,215,.20);
}

.tool-final-box > div > span {
    color: #bcdcff;

    font-size: 10px;
    font-weight: 900;

    letter-spacing: .8px;
}

.tool-final-box h2 {
    margin: 7px 0 5px;

    color: #ffffff;

    font-size: 28px;
}

.tool-final-box p {
    margin: 0;

    color: #dbeaff;

    font-size: 14px;
}

.tool-final-button {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 12px;

    flex-shrink: 0;

    padding: 13px 20px;

    border-radius: 9px;

    background: #ffffff;

    color: #126be1;

    font-size: 13px;
    font-weight: 900;

    text-decoration: none;
}

.tool-final-button span {
    font-size: 18px;
}


/* ==========================================================
   TABLET
   ========================================================== */

@media (max-width: 900px) {

    .dimension-hero {
        padding: 55px 0 65px;
    }

    .dimension-hero-grid {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;

        gap: 30px !important;
    }

    .dimension-hero-copy {
        width: 100%;
        max-width: 750px;

        text-align: center !important;
    }

    .dimension-hero-copy h1 {
        text-align: center !important;
    }

    .dimension-hero-copy > p {
        margin-left: auto;
        margin-right: auto;

        text-align: center !important;
    }

    .dimension-trust-row {
        justify-content: center;
    }

    .dimension-hero-tool {
        width: 100%;
        max-width: 700px;

        margin: 0 auto;
    }

    .dimension-tool-card {
        padding: 24px;
    }

}


/* ==========================================================
   MOBILE
   ========================================================== */

@media (max-width: 700px) {

    .pdf-dimension-tool .container {
        width: min(100% - 28px, 1180px);
    }

    .dimension-hero {
        padding: 45px 0 55px;
    }

    .dimension-hero-grid {
        gap: 25px !important;
    }

    .dimension-hero-copy h1 {
        font-size: 40px;

        letter-spacing: -1.5px;

        text-align: center !important;
    }

    .dimension-hero-copy > p {
        font-size: 16px;

        text-align: center !important;
    }

    .dimension-hero-tool {
        width: 100%;

        padding: 18px;

        border-radius: 16px;
    }

    .dimension-summary-grid,
    .dimension-results .dimension-summary-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }

    .dimension-unit-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }

    .dimension-tool-card {
        padding: 18px;

        border-radius: 16px;
    }

    .dimension-tool-header h2 {
        font-size: 25px;
    }

    .dimension-results-header {
        flex-direction: column;
    }

    .tool-answer-box {
        padding: 25px;
    }

    .tool-answer-box h2 {
        font-size: 25px;
    }

    .tool-article h2 {
        font-size: 25px;
    }

    .orientation-cards {
        grid-template-columns: 1fr;
    }

    .tool-final-box {
        flex-direction: column;

        align-items: flex-start;

        padding: 28px;
    }

    .tool-final-button {
        width: 100%;

        justify-content: center;
    }

}


/* ==========================================================
   SMALL MOBILE
   ========================================================== */

@media (max-width: 480px) {

    .dimension-hero {
        padding-top: 35px;
    }

    .dimension-hero-copy h1 {
        font-size: 34px;

        letter-spacing: -1.2px;
    }

    .dimension-trust-row {
        gap: 10px;
    }

    .dimension-trust-item {
        font-size: 11px;
    }

    .dimension-summary-grid,
    .dimension-results .dimension-summary-grid,
    .dimension-unit-grid {
        grid-template-columns: 1fr;
    }

    .dimension-upload-box {
        min-height: 175px;

        padding: 20px 12px;
    }

    .dimension-upload-content h3 {
        font-size: 16px;
    }

    .dimension-upload-content p {
        font-size: 12px;
    }

    .dimension-file-title strong {
        font-size: 13px;
    }

    .dimension-hero-tool-header {
        align-items: flex-start;
    }

    .dimension-status {
        font-size: 10px;

        padding: 6px 9px;
    }

}


/* ==========================================================
   HIDDEN
   ========================================================== */

[hidden] {
    display: none !important;
}
