/* ===== Footer.module.css ===== */
.footer {
  background-color: #1F252E;
  color: white;
  padding: 20px 50px;
  width: 100%;
  margin: 0;
  /* 마진 제거 */
  box-sizing: border-box;
  /* 패딩이 너비에 포함되도록 설정 */
}

.links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 15px;
}

.links li a {
  color: white;
  text-decoration: none;
  font-size: 14px;
}

.left,
.right {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.right {
  text-align: right;
}

.icons {
  display: flex;
  gap: 15px;
  font-size: 18px;
  margin-top: 10px;
}

@media (max-width: 768px) {
  .right {
    text-align: center;
    margin-top: 20px;
  }
}
/* ===== Header.module.css ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 80px;
  z-index: 50;
  justify-content: center;
  align-items: center;
  max-width: 100%; /* Change from 1920px to 100% to make it fully responsive */
  box-sizing: border-box; /* Ensures padding is included in the width calculation */
  margin: 0 auto; /* Center the header within the viewport */
}

/* Styles for / and /recruitment pages */
.specialHeader {
  background-color: rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(10px);
}

/* Default header styles for other pages */
.header:not(.specialHeader) {
  background-color: #ffffff;
  border-bottom: 1px solid #eaeaea;
}

.logo {
  display: flex;
  width: 123px;
  height: 31.847px;
  justify-content: center;
  align-items: center;
  
}

.menuItem {
  font-size: 18px;
  font-weight: normal;
  color: rgb(239, 239, 239);
  opacity: 0.9;
  transition: opacity 0.3s ease, color 0.3s ease;
  cursor: pointer;
  padding: 0;
  display: inline-block;
  white-space: nowrap;
  line-height: 26px;
}

.menuItem:hover {
  opacity: 1;
  color: rgb(255, 255, 255);
}

.active {
  font-weight: bold;
}

.nonSpecialPage {
  color: #444444;
}

.nonSpecialPage:hover {
  color: #444444;
}

.dropdown {
  display: flex;
  justify-content: flex-end;
}

.button {
  font-weight: 600;
  font-size: 15px;
  background-color: transparent;
  border: 2px solid rgb(255, 255, 255);
  color: rgb(255, 255, 255);
  opacity: 0.9;
}

.dropdownMenu {
  font-size: 15px;
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(10px);
  right: 0;
  left: auto;
}

/* .desktopAlign / .mobileCenter : 원본 Next.js 에선 CSS Module 에 정의가 없어 no-op 였다.
   포팅 중 width:66.67%/margin-left 를 임의로 추가했더니 히어로 콘텐츠 박스가 좁아져
   제목이 줄바꿈됐다(원본은 한 줄). 원본대로 no-op 으로 되돌림(레이아웃은 Tailwind 클래스가 담당). */

/* ===== HeaderMenu.module.css ===== */
.menu {
  display: flex;
  align-items: flex-start;
  gap: 71px;
  position: absolute;
  right: 330px;
  top: 27px;
  height: 26px;
  white-space: nowrap;
}

.menuItem {
  font-size: 18px;
  font-weight: normal;
  color: rgb(239, 239, 239);
  opacity: 0.9;
  transition: opacity 0.3s ease, color 0.3s ease;
  cursor: pointer;
  padding: 0;
  display: inline-block;
  white-space: nowrap;
  line-height: 26px;
}


.menuItem:hover {
  opacity: 1;
  color: rgb(255, 255, 255); /* Hover color for special pages */
}

/* Active menu item with bold text */
.active {
  font-weight: bold;
  opacity: 1;
}

/* New style for non-special pages */
.nonSpecialPage {
  color: #444444;
}

.nonSpecialPage:hover {
  color: #444444; /* Keep the hover color consistent with the text color */
}

.dropdown {
  display: flex;
  justify-content: flex-end;
}

.button {
  font-weight: 600;
  font-size: 15px;
  background-color: transparent;
  border: 2px solid rgb(255, 255, 255);
  color: rgb(255, 255, 255);
  opacity: 0.9;
}

.dropdownMenu {
  font-size: 15px;
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(10px);
  right: 0;
  left: auto;
}

/* .desktopAlign / .mobileCenter : 원본 Next.js 에선 CSS Module 에 정의가 없어 no-op 였다.
   포팅 중 width:66.67%/margin-left 를 임의로 추가했더니 히어로 콘텐츠 박스가 좁아져
   제목이 줄바꿈됐다(원본은 한 줄). 원본대로 no-op 으로 되돌림(레이아웃은 Tailwind 클래스가 담당). */

/* ===== Layout.module.css ===== */
/* 원본 Next.js 에서 .layout/.content 는 CSS Module 로 스코프되어(Layout_content__xxx)
   페이지 레이아웃 main 래퍼 전용이었다. Django 포팅 시 전역 .content 로 평탄화되면서
   히어로 텍스트 박스(document.module.css 의 .content = padding:0 2rem)와 충돌해
   flex:1 이 적용 → 박스가 좁아지고 제목이 줄바꿈됐다. Django 는 레이아웃 grow 를
   <main class="flex-grow"> 로 처리하므로 이 규칙들은 미사용 → 제거(충돌 해소). */
/* ===== LoadingSpinner.module.css ===== */
.spinnerOverlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
  }
  
/* ===== Magazine3.module.css ===== */
.card {
    position: relative;
    box-sizing: border-box;
    border-bottom: 1.5px solid rgba(175, 185, 195, 0.3);
    padding-top: 28px;
    padding-bottom: 28px;
    gap: 4px;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    transition: border-color 300ms ease-in-out;
  }
  
  .card .title {
    overflow: hidden;
    color: #293445;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-weight: 700;
    line-height: 150%;
  }
  
  .card .content {
    color: #46546B;
    font-weight: 500;
    margin-top: 16px;
  }
  
  .card .underline {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 2px;
    width: 0;
    background-color: #000;
    transition: width 300ms ease-in-out;
  }
  
  .card.hover .title,
  .card:hover .title {
    color: #2A7AFF; /* Change text color on hover */
  }
  
  .card.hover .content,
  .card:hover .content {
    color: #2A7AFF; /* Change text color on hover */
  }
  

  .card.hover .underline,
  .card:hover .underline {
    width: 100%; /* Expand underline on hover */
  }
  
  .card {
    position: relative;
    box-sizing: border-box;
    border-bottom: 1.5px solid rgba(175, 185, 195, 0.3);
    padding-top: 28px;
    padding-bottom: 28px;
    gap: 4px;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    transition: border-color 300ms ease-in-out;
  }
  
/* ===== Main.module.css ===== */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.bubble {
    position: absolute;
    background-color: #e6e6fa;
    color: #6495ed;
    border-radius: 10px;

    padding: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.fadeIn {
    opacity: 1;
    transform: translateY(20px);
    transition: opacity 0.5s ease-out, transform 1s ease-out;
}

/* .hidden{opacity:0} 제거됨 — Tailwind 의 hidden 유틸(display:none)과 전역 충돌해
   hidden md:flex/md:block 요소(네비 메뉴 등)가 데스크톱에서 투명해지던 버그.
   페이드 효과는 .fadeIn/.visible, [data-reveal] 로 처리. */

.bubbleText {
    font-size: 16px;
    line-height: 1.4;
    white-space: nowrap;        /* 텍스트를 한 줄로 강제 */
}


.bg-lavender {
    background-color: #E6E6FA;
}

.text-cornflowerblue {
    color: #6495ED;
}

.bg-aliceblue {
    background-color: #F0F8FF;
}

.text-darkslateblue {
    color: #483D8B;
}

.upFadeIn {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease-out, transform 1s ease-out;
}

.upFadeIn.visible {
    opacity: 1;
    transform: translateY(0);
}

/* 타블렛 화면 스타일 */
@media (max-width: 768px) {
    .bubble {
        margin: 8px;
        /* 말풍선 간격 조정 */
    }
}

/* 모바일 화면 스타일 */
@media (max-width: 480px) {
    .bubble {
        margin: 4px;
        /* 말풍선 간격 조정 */
    }
}
/* ===== Main13.module.css ===== */
/* Create a CSS file for custom styles */
.bg-royalblue {
    background-color: #4169e1;
}

.bg-khaki {
    background-color: #f0e68c;
}

.text-darkslateblue {
    color: #483d8b;
}

.font-pretendard {
    font-family: 'Pretendard', sans-serif;
}
/* ===== NewMainCardAdd.module.css ===== */
.cardContainer {
  transform: translateY(0);
  transition: transform 0.3s;
  flex-shrink: 0;
  margin-right: 1.5rem;
  background-color: white;
  border-radius: 30px;
  box-shadow: 0px 0px 40px rgba(0, 0, 0, 0.12);
  margin-bottom: 1rem;
  cursor: pointer;
}

.cardContainer:hover {
  transform: translateY(-22px);
}

.typeLabel {
  display: inline-block;
  margin-bottom: 7.78px; /* Fixed space between type and title */
  border-radius: 6px;
  background: #293445;
  padding: 1px 7px;
  height: 25px;
  justify-content: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  /* transition: background 0.3s ease; */
}

.cardContainer:hover .typeLabel {
  background: #2A7AFF;
}

.typeText {
  color: #FFF;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 25px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.typeTitle {
  color: #293445;
  font-style: normal;
  font-weight: 600;
  line-height: 147%; /* 38.22px */
  transition: color 0.3s ease;
}

.cardContainer:hover .typeTitle {
  color: #2A7AFF;
}

/* ===== Questions.module.css ===== */
.faqContainer {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
}

.faqHeader {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 20px;
  color: #333;
}

.faqTabs {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
}

.faqTab {
  font-size: 16px;
  font-weight: normal;
  color: #666;
  cursor: pointer;
}

.faqTab.active {
  font-weight: bold;
  color: #333;
  border-bottom: 2px solid #333;
}

.faqAccordion {
  border-top: 1px solid #ddd;
}

.faqItem {
  border-bottom: 1px solid #ddd;
  padding: 20px 0;
}

.faqTitle {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 18px;
  color: #333;
}

.faqQ {
  font-weight: bold;
}

.faqQuestion {
  font-weight: normal;
}

.faqContent {
  padding-top: 10px;
  font-size: 16px;
  color: #666;
}

.faqPagination {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}

.paginationButton {
  background-color: #f9f9f9;
  border: 1px solid #ddd;
  padding: 8px 12px;
  margin: 0 5px;
  cursor: pointer;
}

.paginationButton.active {
  background-color: #333;
  color: #fff;
  border-color: #333;
}

.ellipsis {
  display: inline-block;
  margin: 0 5px;
  color: #999;
}

/* ===== ScreenAnimation.module.css ===== */
.fadeIn1 {
    opacity: 0;
    transition: opacity 1s ease-out;
}

.fadeIn1.visible {
    opacity: 1;
}

.fadeIn2 {
    opacity: 0;
    transition: opacity 2s ease-out;
}

.fadeIn2.visible {
    opacity: 1;
}

.fadeIn3 {
    opacity: 0;
    transition: opacity 3s ease-out;
}

.fadeIn3.visible {
    opacity: 1;
}

.fadeIn4 {
    opacity: 0;
    transition: opacity 4s ease-out;
}

.fadeIn4.visible {
    opacity: 1;
}


.upfadeIn1 {
    opacity: 0;
    transition: opacity 0.5s ease-out, transform 1s ease-out;
    transform: translateY(20px);
}

.upfadeIn1.visible {
    opacity: 1;
    transform: translateY(0);
}

.upfadeIn2 {
    opacity: 0;
    transition: opacity 0.5s ease-out, transform 2s ease-out;
    transform: translateY(20px);
}

.upfadeIn2.visible {
    opacity: 1;
    transform: translateY(0);
}

.upfadeIn3 {
    opacity: 0;
    transition: opacity 0.5s ease-out, transform 3s ease-out;
    transform: translateY(20px);
}

.upfadeIn3.visible {
    opacity: 1;
    transform: translateY(0);
}





.downfadeIn1 {
    opacity: 0;
    transition: opacity 0.5s ease-out, transform 1s ease-out;
    transform: translateY(-20px);
}

.downfadeIn1.visible {
    opacity: 1;
    transform: translateY(0);
}

.downfadeIn2 {
    opacity: 0;
    transition: opacity 0.5s ease-out, transform 2s ease-out;
    transform: translateY(-20px);
}

.downfadeIn2.visible {
    opacity: 1;
    transform: translateY(0);
}

.downfadeIn3 {
    opacity: 0;
    transition: opacity 0.5s ease-out, transform 3s ease-out;
    transform: translateY(-20px);
}

.downfadeIn3.visible {
    opacity: 1;
    transform: translateY(0);
}





.leftfadeIn1 {
    opacity: 0;
    transition: opacity 0.5s ease-out, transform 1s ease-out;
    transform: translateX(-20px);
}

.leftfadeIn1.visible {
    opacity: 1;
    transform: translateX(0);
}

.leftfadeIn2 {
    opacity: 0;
    transition: opacity 0.5s ease-out, transform 2s ease-out;
    transform: translateX(-20px);
}

.leftfadeIn2.visible {
    opacity: 1;
    transform: translateX(0);
}

.downfadeIn3 {
    opacity: 0;
    transition: opacity 0.5s ease-out, transform 3s ease-out;
    transform: translateX(-20px);
}

.leftfadeIn3.visible {
    opacity: 1;
    transform: translateX(0);
}





.rightfadeIn1 {
    opacity: 0;
    transition: opacity 0.5s ease-out, transform 1s ease-out;
    transform: translateX(20px);
}

.rightfadeIn1.visible {
    opacity: 1;
    transform: translateX(0);
}

.rightfadeIn2 {
    opacity: 0;
    transition: opacity 0.5s ease-out, transform 2s ease-out;
    transform: translateX(20px);
}

.rightfadeIn2.visible {
    opacity: 1;
    transform: translateX(0);
}

.rightfadeIn3 {
    opacity: 0;
    transition: opacity 0.5s ease-out, transform 3s ease-out;
    transform: translateX(20px);
}

.rightfadeIn4.visible {
    opacity: 1;
    transform: translateX(0);
}
/* ===== Phone mockup =====
   원본 Next.js 는 <Image layout="fill"> 트릭(프레임이 바깥 relative 래퍼를 채우고
   스크린샷보다 넓어짐)으로 합성했는데, SSR 포팅 시 프레임 폭이 스크린샷과 같아져
   스크린샷이 베젤 밖으로 삐져나왔다.
   견고한 방식으로 재구성: 프레임 PNG(.mockup)가 래퍼 크기를 정의하고, 스크린샷(.screen)을
   프레임의 투명 화면영역(컷아웃)에 절대배치 + overflow:hidden 으로 클리핑한다.
   인셋은 Main_iphone.png(1530x3036) 알파에서 측정: 좌우 베젤 7.8%, 상하 3.9%. */
.phoneMock {
  /* 원본 .iphoneContainer 와 동일: 프레임 폭 380px (모바일은 부모 폭에 맞춰 축소) */
  position: relative;
  width: 380px;
  max-width: 100%;
  margin: 0 auto;
}
.phoneMock .mockup {        /* 프레임 PNG: 래퍼 크기를 정의(흐름 내 배치) */
  display: block;
  width: 100%;
  height: auto;
  position: relative;
  z-index: 3;
  pointer-events: none;
}
.phoneMock .screen {        /* 스크린샷 화면영역: 프레임 컷아웃 안으로 클리핑 */
  position: absolute;
  top: 3.9%;
  left: 7.8%;
  right: 7.8%;
  bottom: 3.9%;
  overflow: hidden;
  border-radius: 8% / 3.7%;
  background: #fff;
  z-index: 1;
}
.phoneMock .screen img {    /* 앱 스크린샷: 화면 폭에 맞춰 채우고 위에서부터, 길면 클리핑(+팬) */
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  will-change: transform;
}

/* ===== custom.module.css ===== */
.proseCustom h1,
.proseCustom h2,
.proseCustom h3,
.proseCustom h4,
.proseCustom h5, /* h5 추가 */
.proseCustom h6, /* h6 추가 */
.proseCustom p,
.proseCustom li,
.proseCustom ul,
.proseCustom a {
    color: #293445 !important;
    margin-bottom: 1.5rem !important;
}

/* h1 스타일 */
.proseCustom h1 {
    color: #191F28 !important; /* 텍스트 색상 */
    font-family: Pretendard, sans-serif !important;
    font-size: 28px !important;
    font-style: normal !important;
    font-weight: 700 !important;
    line-height: 200% !important; /* 56px */
    letter-spacing: -0.056px !important;
}

/* h2 스타일 */
.proseCustom h2 {
    font-family: "Pretendard Variable", sans-serif !important;
    font-size: 22px !important;
    font-style: normal !important;
    font-weight: 700 !important;
    line-height: 200% !important; /* 44px */
}

/* h3 스타일 */
.proseCustom h3 {
    font-family: "Pretendard Variable", sans-serif !important;
    font-size: 20px !important;
    font-style: normal !important;
    font-weight: 700 !important;
    line-height: 200% !important; /* 40px */
}

/* h4 스타일 */
.proseCustom h4 {
    font-family: Pretendard, sans-serif !important;
    font-size: 18px !important;
    font-style: normal !important;
    font-weight: 600 !important;
    line-height: 180% !important; /* 32.4px */
}

/* h5 스타일 */
.proseCustom h5 {
    font-family: Pretendard, sans-serif !important;
    font-size: 16px !important; /* 폰트 크기 */
    font-style: normal !important;
    font-weight: 600 !important;
    line-height: 180% !important; /* 28.8px */
    margin-bottom: 1rem !important; /* 하단 여백 */
}

/* h6 스타일 */
.proseCustom h6 {
    font-family: Pretendard, sans-serif !important;
    font-size: 14px !important; /* 폰트 크기 */
    font-style: normal !important;
    font-weight: 400 !important;
    line-height: 180% !important; /* 25.2px */
    margin-bottom: 1rem !important; /* 하단 여백 */
}

/* p 스타일 */
.proseCustom p{
    font-family: Pretendard, sans-serif !important;
    font-size: 18px !important; /* 폰트 크기 */
    font-style: normal !important;
    font-weight: 300 !important; /* 텍스트 두께 */
    line-height: 180% !important; /* 32.4px */
    margin-bottom: 1rem !important; /* 하단 여백 */
}

/* li 스타일 */
.proseCustom li {
    font-family: Pretendard, sans-serif !important;
    font-style: bv !important;
    font-weight: 300 !important;
    line-height: 180% !important; /* 32.4px */
}

/* ul 스타일 */
.proseCustom ul {
    list-style-type: disc !important;
    padding-left: 20px !important;
}

.proseCustom br+br {
    display: block !important;
    margin-top: 1rem !important;
}

/* ===== document.module.css ===== */
.carouselContainer {
  width: 100%;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: start;
  justify-content: center;
  position: relative;
  
}

.backgroundImage {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
}

.image {
  width: 100%;
  height: 100vh;
  object-fit: cover;
}

.contentContainer {
  position: absolute;
  width: 100%;
  color: white;
}

@media (min-width: 768px) {
  .contentContainer {
    top: 66%;
    left: 50%;
    transform: translate(-50%, -66%);
  }
}

@media (max-width: 767px) {
  .contentContainer {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
  }
}

.content {
  padding: 0 2rem;
}
/* ===== document2.module.css ===== */
.carouselContainer {
  position: relative;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  background: url('https://bokduckbbang.s3.ap-northeast-2.amazonaws.com/static/bokduck-home/Background_Banner4.png') no-repeat center center;
  background-size: cover;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  /* Dark overlay */
  animation: overlayTransition 8s infinite;
  z-index: 0;
  /* Ensure overlay is below the text */
}

@keyframes overlayTransition {

  0%,
  10%,
  50%,
  100% {
    opacity: 1;
  }

  20%,
  45% {
    opacity: 0;
  }
}

/* document2.module.css 의 .textContainer (채용 배너 전용 절대배치 흰색 오버레이).
   원본에선 Screenshot.module.css 의 .textContainer(=no-op, Main3/4/7/8 텍스트 칼럼)와
   다른 스코프 클래스였는데, 평탄화로 충돌해 홈 섹션 텍스트가 중앙정렬됐다.
   채용 배너 전용으로 .bannerTextContainer 로 분리(홈의 .textContainer 는 원본대로 no-op). */
.bannerTextContainer {
  position: absolute;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-align: center;
  z-index: 1;
}

.leftText,
.rightText {
  opacity: 0;
  animation: textInOut 8s infinite;
}

.leftText {
  opacity: 1; /* Initial state visible */
  animation-delay: 0s;
}

.rightText {
  animation-delay: 0s;
}

.centerText {
  opacity: 0;
  animation: textInOut 8s infinite;
  animation-delay: 4s;
}

@keyframes textInOut {
  0%,
  10%,
  50%,
  100% {
    opacity: 0;
    display: none;
  }

  20%,
  45% {
    opacity: 1;
    display: flex;
  }
}

/* ===== main3.module.css ===== */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.bubble {
    position: absolute;
    background-color: #e6e6fa;
    color: #6495ed;
    border-radius: 10px;
    padding: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.fadeIn {
    opacity: 1;
    animation: fadeIn 1s ease-in-out forwards;
}

/* .hidden{opacity:0} 제거됨 — Tailwind 의 hidden 유틸(display:none)과 전역 충돌해
   hidden md:flex/md:block 요소(네비 메뉴 등)가 데스크톱에서 투명해지던 버그.
   페이드 효과는 .fadeIn/.visible, [data-reveal] 로 처리. */

.bubbleText {
    font-size: 16px;
    line-height: 1.4;
}

.bg-lavender {
    background-color: #e6e6fa;
}

.text-cornflowerblue {
    color: #6495ed;
}

.bg-aliceblue {
    background-color: #f0f8ff;
}

.text-darkslateblue {
    color: #483d8b;
}

/* Responsive design for mobile and tablet */
@media (max-width: 768px) {
    .bubble {
        font-size: 12px;
        padding: 8px;
    }

    .bubbleText {
        font-size: 14px;
    }

    .absolute {
        width: auto;
        left: 0;
        transform: scale(0.9);
    }
}

@media (max-width: 480px) {
    .bubble {
        font-size: 10px;
        padding: 6px;
    }

    .bubbleText {
        font-size: 12px;
    }

    .absolute {
        width: auto;
        left: 0;
        transform: scale(0.8);
    }
}
