/* rythmic/public/css/do-not-sell-or-share-my-personal-information.css */

/* Global adjustments for body and html to prevent horizontal overflow and set box-sizing */
html, body {
  width: 100%;
  overflow-x: hidden; /* Prevent horizontal scroll for the entire page */
  min-width: unset; /* Ensure no global min-width is forcing horizontal overflow */
}

body {
  margin: 0;
  padding: 0;
  box-sizing: border-box; /* Apply border-box globally */
  font-family: Arial, sans-serif; /* Add a default font-family */
  color: var(--gray900); /* Default text color */
}

.do-not-sell-or-share-my-personal-information {
  align-items: flex-start; /* Aligns content to the start of the cross axis (left for column) */
  background-color: var(--white);
  display: flex;
  flex-direction: column; /* Stack sections vertically */
  width: 100%;
  box-sizing: border-box;
  min-width: unset;
  height: auto; /* Ensure content dictates height */
  overflow-x: hidden;
}

/* Ensure the main content wrapper inside .do-not-sell-or-share-my-personal-information is properly positioned */
.do-not-sell-or-share-my-personal-information .frame-1948754820 {
  display: flex;
  flex-direction: column;
  width: 100%;
  position: relative;
  z-index: 1;
  margin-top: 80px; /* Clear space for the fixed navbar */
  height: auto; /* Ensure content dictates height */
  flex-grow: 1; /* Allow this section to grow and push the footer down */
}

/* Header Section for "Do Not Sell" Page */
.do-not-sell-or-share-my-personal-information .header-section {
  display: flex;
  flex-direction: column;
  align-items: center; /* Center content horizontally within the section */
  width: 100%;
  max-width: 1440px; /* Constrain main section width for desktop */
  margin: 0 auto; /* Center the section itself */
  box-sizing: border-box;
  background: linear-gradient(180deg, rgb(255, 255, 255) 0%, rgb(250, 250, 251) 100%);
  padding: 96px 0px; /* Desktop top/bottom padding */
  gap: 64px;
}

/* Container for Header Text */
.do-not-sell-or-share-my-personal-information .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 1280px; /* Wider container for content within header */
  padding: 0 32px; /* Inner horizontal padding for desktop */
  box-sizing: border-box;
}

.do-not-sell-or-share-my-personal-information .content {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 960px; /* Max width for actual text content */
  gap: 40px;
  box-sizing: border-box;
}

.do-not-sell-or-share-my-personal-information .heading-and-supporting-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  width: 100%;
  max-width: 960px;
}

.do-not-sell-or-share-my-personal-information .heading-and-subheading {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  justify-content: center;
  width: 100%;
}

.do-not-sell-or-share-my-personal-information .heading.display-lgsemibold {
  color: var(--gray900);
  font-weight: 600;
  line-height: 60px;
  font-size: 48px; /* display-lgsemibold equivalent, scaled for mobile consistency */
  text-align: center;
  width: 100%;
  max-width: 652px;
  margin: 0;
}

.do-not-sell-or-share-my-personal-information .supporting-text.text-xlregular {
  color: var(--gray600);
  font-weight: 400;
  line-height: 30px;
  font-size: 20px; /* text-xlregular equivalent */
  text-align: center;
  width: 100%;
  max-width: 758px;
  margin: 0;
}


/* --- Mobile Responsiveness Overrides (max-width: 991.98px for 'lg' breakpoint) --- */
@media (max-width: 991.98px) {

  /* General mobile adjustments for main sections */
  .do-not-sell-or-share-my-personal-information .header-section {
      padding: 48px 16px;
      gap: 32px;
      align-items: flex-start;
  }

  /* Ensure all main content containers are full width and left-aligned */
  .do-not-sell-or-share-my-personal-information .container,
  .do-not-sell-or-share-my-personal-information .content,
  .do-not-sell-or-share-my-personal-information .heading-and-supporting-text,
  .do-not-sell-or-share-my-personal-information .heading-and-subheading {
    align-items: flex-start;
    max-width: 100%;
    width: 100%;
  }

  .do-not-sell-or-share-my-personal-information .container,
  .do-not-sell-or-share-my-personal-information .content {
      padding: 0 16px;
  }

  .do-not-sell-or-share-my-personal-information .heading.display-lgsemibold {
    font-size: 36px;
    line-height: 44px;
    text-align: left;
  }

  .do-not-sell-or-share-my-personal-information .supporting-text.text-xlregular {
    font-size: 16px;
    line-height: 24px;
    text-align: left;
    width: 100%;
    max-width: unset;
  }
}

/* Variables - assumed to be imported from styleguide.css or defined globally */
:root {
  --white: #ffffff;
  --gray100: #f2f4f7;
  --gray300: #d0d5dd;
  --gray600: #475467;
  --gray900: #101828;
  --blue-chill: #0199a6;
  --blue-chill-2: #0199a6;
  --fiord: #455a64;
}