    .page {
      width: 100%;
      max-width: 1100px;
      margin: 0 auto;
    }

    .ad-slot {
      width: 100%;
      margin: 0 0 24px;
      overflow: hidden;
      text-align: center;
      background: #eef2f7;
      border: 1px dashed #c5ced9;
      border-radius: 12px;
    }

    .ad-slot__label {
      display: block;
      padding: 8px 12px 0;
      color: #8a93a2;
      font-size: 11px;
      letter-spacing: 0.04em;
    }

    .ad-slot__inner {
      min-height: 90px;
      padding: 8px;
    }

    .ad-slot--top .ad-slot__inner {
      min-height: 100px;
    }

    .ad-slot--mid .ad-slot__inner {
      min-height: 100px;
    }

    .ad-slot--bottom .ad-slot__inner {
      min-height: 100px;
    }

    .ad-slot--side {
      display: none;
      margin: 0;
      position: sticky;
      top: 24px;
    }

    .ad-slot--side .ad-slot__inner {
      min-height: 250px;
    }

    .page__layout {
      display: grid;
      grid-template-columns: 1fr;
      gap: 24px;
      align-items: start;
    }

    .page__main {
      min-width: 0;
    }






    /* 태블릿: 상·중·하단 광고만 */
    @media (min-width: 768px) {
      .ad-slot--top .ad-slot__inner,
      .ad-slot--mid .ad-slot__inner,
      .ad-slot--bottom .ad-slot__inner {
        min-height: 90px;
      }
    }

    /* 데스크톱: 사이드 광고 표시 */
    @media (min-width: 1024px) {
      body {
        padding: 40px 24px;
      }

      .page__layout {
        grid-template-columns: minmax(0, 1fr) 300px;
      }

      .calculator {
        max-width: none;
      }

      .ad-slot--side {
        display: block;
      }

      .ad-slot--side .ad-slot__inner {
        min-height: 600px;
      }
    }




    @media (max-width: 600px) {

      .ad-slot {
        margin-bottom: 16px;
        border-radius: 10px;
      }

      .ad-slot__inner {
        min-height: 80px;
      }
    }
