/* Design System - Light Mode */
body>.wrapper:not(.et-fb-iframe-ancestor) { overflow: unset !important;}

:root {
  /* Colors */
  --bg-page: #F2F4F7;
  --bg-card: #FFFFFF;
  --text-main: #101828;
  --text-muted: #667085;
  --primary: #0D47E2;
  --primary-hover: #0b3cb5;
  --border-color: #D0D5DD;
  --border-focus: #0D47E2;
  --shadow-sm: 0 1px 2px rgba(16, 24, 40, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(16, 24, 40, 0.1), 0 2px 4px -1px rgba(16, 24, 40, 0.06);

  /* Spacing & Radius */
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --spacing-xs: 4px;
  --spacing-sm: 8px;
  --spacing-md: 16px;
  --spacing-lg: 24px;
  --spacing-xl: 32px;

  /* Fonts */
  --font-heading: 'Bree Serif', serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;

  /* Form Controls */
  --input-height: 42px;
  --input-padding-y: 8px;
  --input-padding-x: 16px;
  --input-font-size: 16px;
  --input-line-height: 24px;
  --input-border: 1px;
  --input-border-focus: 2px;
  --input-radius: 8px;

  /* Form Labels */
  --label-font-size: clamp(13.5px, 1.2vw, 15px);
  --label-line-height: 20px;
  --label-weight: 500;
}


/*hero icons*/
.hero-icon {position: absolute;}
.artha-title-row {position: relative;}
.hero-icon-green {
    left: -30px;
    top: -130px;
}
.hero-icon-blue {
    right: 100px;
    top: -80px;
}
.artha-link-hero-section .vc_col-sm-12 {
    position: unset;
}
.corner-shap {
    position: absolute;
    right: 0;
    top: 300px;
}
.table-of-content ul li a.active {
    color: #101828 !important;
}


.hero-content {
    width: 100%;
    max-width: 1100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0 auto 40px;
}


/* Layout */
.page-container {
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    align-items: start;
}
.artha-link-hero-section {
    padding-top: 100px;
}



/* Cards */
.card {
  background: #FFFFFF;
  border: 1px solid #000000;
  border-radius: 16px;
  padding: 16px;
  margin-bottom: 24px;
}

.section-title {
  font-family: var(--font-heading);
  font-size: 24px;
  /*font-weight: 600;*/
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Inputs */
.input-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}

.input-label {
  font-size: var(--label-font-size);
  font-weight: var(--label-weight);
  color: var(--text-muted);
  line-height: var(--label-line-height);
}

.input-field,
.form-control {
  width: 100%;
  min-height: var(--input-height);
  padding: var(--input-padding-y) var(--input-padding-x);
  border: var(--input-border) solid #101828;
  border-radius: var(--input-radius);
  background: #FFFFFF;
  color: #101828;
  font-family: var(--font-body);
  font-size: var(--input-font-size);
  font-weight: 400;
  line-height: var(--input-line-height);
  outline: none;
  transition: all 0.2s ease;
  box-sizing: border-box;
}

.input-field::placeholder,
.form-control::placeholder {
  color: #868686;
}

.input-field:focus:not(:disabled),
.input-field:hover:not(:disabled),
.form-control:focus:not(:disabled),
.form-control:hover:not(:disabled) {
  border: var(--input-border-focus) solid #0D41E1;
  padding: calc(var(--input-padding-y) - (var(--input-border-focus) - var(--input-border))) calc(var(--input-padding-x) - (var(--input-border-focus) - var(--input-border)));
}

.input-field:disabled,
.form-control:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  background: #F9FAFB;
}

select.input-field,
select.form-control {
  appearance: none;
  background-image: url("../icons/chevron-down.svg");
  background-repeat: no-repeat;
  background-position: right var(--input-padding-x) center;
  background-size: 16px;
  padding-right: calc(var(--input-padding-x) + 24px);
}

select.input-field:focus:not(:disabled),
select.input-field:hover:not(:disabled),
select.form-control:focus:not(:disabled),
select.form-control:hover:not(:disabled) {
  padding-right: calc(var(--input-padding-x) + 24px - (var(--input-border-focus) - var(--input-border)));
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.2s ease;
  border: none;
  font-family: var(--font-body);
}

.btn-primary {
  background-color: #0d47e2;
  color: white;
  border: 2px solid #101828;
  border-radius: 8px;
  box-shadow: 4px 4px 0 0 #101828;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 600;
  font-size: 18px;
  padding: 14px 24px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.1s ease;
}

.btn-primary:hover {
  transform: translate(2px, 2px);
  box-shadow: 2px 2px 0 0 #101828;
}

.btn-primary:active {
  transform: translate(4px, 4px);
  box-shadow: none;
}

/* Toggles */
.toggle-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  background: #F9FAFB;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  margin-bottom: 12px;
}

.toggle-section {
  background: #F9FAFB;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 12px;
}

.toggle-section .toggle-row {
  margin-bottom: 0;
  border: none;
  border-radius: 0;
  background: transparent;
}

.section-divider {
  height: 1px;
  background: #E4E7EC;
  margin: 0 16px;
}

.toggle-content {
  max-height: 0;
  padding: 0 16px 0;
  overflow: hidden;
  transition: max-height 0.25s ease, padding 0.25s ease;
}

.toggle-content.is-open {
  max-height: 1200px;
  padding: 12px 16px 16px;
}

.toggle-content .input-group,
.toggle-content.input-group {
  margin-bottom: 0;
}

.switch {
  position: relative;
  width: 44px;
  height: 24px;
}

.switch input {
  display: none;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #E4E7EC;
  transition: .2s;
  border-radius: 34px;
}

.slider:before {
  position: absolute;
  content: "";
  height: 20px;
  width: 20px;
  left: 2px;
  bottom: 2px;
  background-color: white;
  transition: .2s;
  border-radius: 50%;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

input:checked+.slider {
  background-color: var(--primary);
}

input:checked+.slider:before {
  transform: translateX(20px);
}

/* Summary / Results */
.summary-card {
  text-align: center;
  padding: 24px;
  background: #0D47E2;
  color: white;
  border-radius: 16px;
  border: 2px solid #000000;
  box-shadow: 4px 4px 0 0 #000000;
  margin-bottom: 20px;
}

.sticky-panel {
  position: sticky;
  top: 20px;
  align-self: start;
}

.summary-card h3 {
  color: rgba(255, 255, 255, 0.9);
  font-family: var(--font-body);
  font-size: 16px;
  margin-bottom: 8px;
}

.summary-card .big-number {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 4px;
}

.chip-pink {
    background: rgba(241, 95, 173, 0.08);
    color: #F15FAD;
    border: 1px solid #F15FAD;
    border-radius: 200px;
    padding: 6px 12px;
    font-size: 13px;
    font-weight: 600;
    line-height: 1.5;
}

.breakdown-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 16px;
}

.breakdown-table th {
  text-align: left;
  color: var(--text-muted);
  font-weight: 600;
  padding: 8px 0;
  border-bottom: 1px solid var(--border-color);
}

.breakdown-table td {
  padding: 12px 0;
  border-bottom: 1px solid #F2F4F7;
  color: var(--text-main);
}

.progress-bar {
  height: 8px;
  background: #F2F4F7;
  border-radius: 4px;
  overflow: hidden;
  width: 100%;
  margin-right: 8px;
}

.progress-fill {
  height: 100%;
  background: var(--primary);
  border-radius: 4px;
}

.mt-4 {
  margin-top: 16px;
}

.mb-4 {
  margin-bottom: 16px;
}

/* Channel Search Dropdown */
.channel-results {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: white;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  z-index: 10;
  max-height: 300px;
  overflow-y: auto;
  margin-top: 4px;
}

.channel-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px;
  cursor: pointer;
  transition: background 0.1s;
}

.channel-item:hover {
  background: #F9FAFB;
}

.channel-item img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
}

.channel-item .info {
  display: flex;
  flex-direction: column;
}

.channel-item .title {
  font-weight: 600;
  color: var(--text-main);
}

.channel-item .desc {
  font-size: 12px;
  color: var(--text-muted);
}


.hero-decor {
  opacity: 0.75;
}
.channel-selected-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  background: #F9FAFB;
  box-shadow: var(--shadow-sm);
  margin-bottom: 16px;
}

.channel-selected-left {
  display: flex;
  align-items: center;
  gap: 10px;
}

.channel-selected-card img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid var(--border-color);
}

.channel-selected-title {
  font-weight: 700;
  color: var(--text-main);
  font-size: 15px;
}

.channel-selected-views {
  font-size: 13px;
  color: var(--text-muted);
}

.btn-link {
  background: none;
  border: none;
  color: var(--text-muted);
  font-weight: 700;
  cursor: pointer;
  padding: 6px 8px;
  border-radius: var(--radius-md);
}

.btn-link:hover {
    background: transparent;
    color: #000;
}



/*content section*/
.post-cont-row:not(.post-cont-row:last-child) {
    margin-bottom: 40px;
}
.font-32 {
    margin-bottom: 24px;
    font-family: 'Plus Jakarta Sans' !important;
    font-weight: 600 !important;
}
h3 {
    font-family: "Plus Jakarta Sans";
    font-weight: 600;
}

.left-sidebar .sidebar-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 24px;
}
.table-of-content ul {
    padding-left: 0;
}
.table-of-content ul li {
    list-style-type: none;
    margin-top: 0;
    margin-bottom: 12px;
}
.table-of-content ul li a {
    color: #80858E;
}
.table-of-content ul li a:hover, .table-of-content ul li a:focus, .table-of-content ul li a:focus-visible {
    color: #101828;
}
.calculator-row .calculator-shortcoard {
    padding-bottom: 60px;
    margin-bottom: 60px;
    border-bottom: 1px solid #BDBDBD;
}
.container.youtube-container {
    align-items: baseline;
}
.youtube-container .left-sidebar {
    position: sticky;
    top: 150px;
}

.content-panel {
  position: relative;
}

.results-column {
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: sticky;
  top: 20px;
  align-self: start;
}
.summary-mobile {
    display: none;
}
.right-post-content .strip-row {
    padding-top: 40px;
}



@media (max-width: 1400px) {
.artha-link-hero-section { padding-top: 60px;}

/*hero icons*/
.hero-icon-green img { max-width: 160px;}
.hero-icon-green {left: 0px;top: -70px;}
.hero-icon-blue.hero-icon {right: 30px;top: -50px;}
.hero-icon-blue  img { max-width: 70px;}
.corner-shap img { max-width: 160px !important;}
.corner-shap { top: 270px;}

.calculator-row .calculator-shortcoard {padding-bottom: 50px; margin-bottom: 50px;}


}




@media (max-width: 960px) {
.artha-link-hero-section { padding-top: 30px;}

.page-container { padding: 0;}
.hero-icon-green img { max-width: 100px;}
.hero-icon-green {top: -60px;}
.corner-shap img {max-width: 120px !important;}
.corner-shap { top: 240px;}


.page-container { grid-template-columns: 1fr;}
/**/
.hero-content {margin: 0 auto 20px;}
.calculator-row .calculator-shortcoard {padding-bottom: 30px; margin-bottom: 40px;}

.results-column .summary-card {display: none;}
.results-column { position: static; top: auto;  }
.summary-mobile { display: flex; align-items: center; justify-content: space-between; position: sticky; bottom: 0px; z-index: 4;  gap: 12px; padding: 18px 16px; background: rgb(13, 71, 226);margin-bottom: 0;        top: 0;}
.view-breakdown-btn {  border: none;  background: transparent;    color: #ffffff;  text-align: left;  padding: 0;  font-size: 13px;  text-decoration: underline; cursor: pointer;}
    .summary-mobile h3 { margin: 0; font-size: 15px; text-align: left;max-width: 140px; font-weight: 600; }
.summary-mobile-left { display: flex; flex-direction: column; gap: 4px;}


}


@media (max-width: 767px) {
.artha-link-hero-section { padding-top: 30px;}
.hero-icon-green img { max-width: 50px;}
.hero-icon-green {top: -36px; }
.hero-icon-blue  img { max-width: 43px;}
.hero-icon-blue.hero-icon {right: 30px;top: -36px;}
    .corner-shap { top: 240px;   right: -40px;    }

/**/
.youtube-container .left-sidebar {position: unset; margin-bottom: 30px;}
.artha-link-hero-section .artha-title-row.pad-bt-10 { padding-bottom: 30px !important;}
.mb-3 { margin-bottom: 20px !important;}
.post-cont-row:not(.post-cont-row:last-child) { margin-bottom: 30px;}


}



@media (max-width: 480px) {




}