[v-cloak] { display: none; }

:root {
  --ink: #0c1a23;
  --slate: #31424f;
  --mist: #eef2f3;
  --paper: #f7f4ee;
  --sun: #f6c35c;
  --sun-dark: #e9aa3c;
  --sea: #2f8f83;
  --coral: #f07c59;
}

* {
  font-family: 'Source Sans 3', sans-serif;
}

body {
  background-color: var(--paper);
  color: var(--ink);
}

h1 {
  font-weight: 700;
}

h5 {
  font-size: 2rem;
}

h6 {
  font-weight: 600;
  color: #0e1318;
}

/*header*/

.site-nav {
  background-color: rgba(247, 244, 238, 0.92);
  border-bottom: 1px solid rgba(12, 26, 35, 0.08);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  box-shadow: 0 18px 40px rgba(12, 26, 35, 0.08);
}

.brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 0;
  text-decoration: none;
}

.brand-mark {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: linear-gradient(#fff, #fff) padding-box,
    linear-gradient(135deg, rgba(246, 195, 92, 0.9), rgba(47, 143, 131, 0.85)) border-box;
  border: 2px solid transparent;
  color: var(--slate);
  font-weight: 700;
  font-size: 1.25rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: 0.75rem;
}

.brand-text {
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--ink);
  letter-spacing: 0;
  line-height: 1.1;
}

.brand-domain {
  font-weight: 700;
  color: var(--sea);
  margin-left: -0.05em;
  font-size: 0.95rem;
  line-height: 1.1;
  align-self: center;
}

.site-nav .nav-link {
  color: var(--slate);
  font-weight: 600;
  padding: 0.5rem 0.9rem;
}

.site-nav .nav-link:hover,
.site-nav .nav-link:focus {
  color: var(--sea);
}

.site-nav .navbar-toggler {
  border: 1px solid rgba(12, 26, 35, 0.2);
}

.site-nav .navbar-toggler:focus {
  box-shadow: 0 0 0 0.15rem rgba(47, 143, 131, 0.25);
}

.btn-cta {
  background-color: var(--sun);
  border: none;
  border-radius: 999px;
  padding: 0.45rem 1.2rem;
  font-weight: 700;
  color: #1d1912;
}

.btn-cta:hover {
  background-color: var(--sun-dark);
  color: #1d1912;
}

@media (max-width: 991px) {
  .site-nav .navbar-collapse {
    background: #fff;
    border-radius: 1rem;
    padding: 1rem;
    margin-top: 0.75rem;
    box-shadow: 0 20px 40px rgba(12, 26, 35, 0.15);
  }

  .site-nav .nav-link {
    padding: 0.45rem 0;
  }

  .btn-cta {
    width: 100%;
    text-align: center;
  }
}

.breadcrumb-item + .breadcrumb-item::before {
  margin-top:2px;
  content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16'><path fill='currentColor' d='m6.47 4.29 3.54 3.53c.1.1.1.26 0 .36L6.47 11.7a.75.75 0 1 0 1.06 1.06l3.54-3.53c.68-.69.68-1.8 0-2.48L7.53 3.23a.75.75 0 0 0-1.06 1.06z' /%3E%3C/svg%3E");
}

.breadcrumb {
  font-size: 0.9rem;
  margin-bottom: 1.25rem;
}

.breadcrumb a {
  color: var(--sea);
  text-decoration: none;
}

.breadcrumb a:hover {
  color: var(--coral);
}

.breadcrumb-item.active {
  color: #6a7882;
}

/*padding*/

.md-padding-x {
  padding-left: 48px;
  padding-right: 48px;
}

.big-padding-x {
  padding-left: 48px;
  padding-right: 48px;
}

.extra-big-padding-x {
  padding-left: 48px;
  padding-right: 48px;
}

@media (min-width: 768px) {
  .big-padding-x {
    padding-left: 200px;
    padding-right: 200px;
  }

  .extra-big-padding-x {
    padding-left:400px;
    padding-right:400px;
  }

  .md-padding-x {
    padding-left: 50px;
    padding-right: 50px;
  }
}

@media (max-width: 430px) {
  .big-padding-x {
    padding-left: 8px;
    padding-right: 8px;
  }
}

/*middle-btn-container*/
.middle-btn-container {
  margin-top:0;
}

@media (min-width: 768px) {
  .middle-btn-container {
    margin-top:150px;
  }
}


/*action-container*/
.action-container {
  background-color: #fff;
  border-radius: 1.5rem;
  min-height: 250px;
  margin: 0 0 1.8em 0;
  padding: 1.25rem;
  border: 1px solid rgba(12, 26, 35, 0.08);
  box-shadow: 0 16px 32px rgba(12, 26, 35, 0.08);
}

.container-fluid h1.text-center {
  font-size: clamp(2.2rem, 1.8vw + 1.5rem, 3rem);
  color: var(--ink);
  margin-bottom: 0.75rem;
}

.action-body {
  padding: 1.5rem;
  border-radius: 1.2rem;
  border: 1.5px dashed rgba(47, 143, 131, 0.35);
  background: rgba(255, 255, 255, 0.9);
  min-height: 260px;
}

.action-body-content {
  padding-top: 18px;
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--slate);
  max-width: 680px;
  margin: 0 auto;
}

.thumbnail {
  border-radius: 0.9rem;
  border: 1px solid rgba(12, 26, 35, 0.12);
  background: #fff;
  padding: 4px;
  box-shadow: 0 10px 22px rgba(12, 26, 35, 0.12);
}

/* background remover */
.bg-remove-shell {
  padding: 1.5rem;
}

.bg-remove-panel {
  position: relative;
}

.bg-remove-panel.is-dragging {
  border-color: rgba(47, 143, 131, 0.75);
  box-shadow: 0 0 0 3px rgba(47, 143, 131, 0.18);
}

.bg-remove-close {
  position: absolute;
  right: 1rem;
  top: 1rem;
}

.bg-remove-note {
  font-size: 0.9rem;
  color: var(--slate);
  margin-top: 0.5rem;
}

.bg-remove-header {
  display: flex;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 1.5rem;
  padding-right: 4rem;
}

.bg-remove-file__name {
  font-weight: 700;
  color: var(--ink);
}

.bg-remove-file__meta {
  display: flex;
  gap: 0.4rem;
  flex-wrap: wrap;
  font-size: 0.85rem;
  color: var(--slate);
}

.bg-remove-actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  align-items: center;
  margin-right: 0.5rem;
}

.bg-remove-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}

.bg-remove-card {
  background: #fff;
  border-radius: 1.25rem;
  border: 1px solid rgba(12, 26, 35, 0.08);
  box-shadow: 0 12px 24px rgba(12, 26, 35, 0.08);
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.bg-remove-card__head {
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
  align-items: baseline;
  flex-wrap: wrap;
}

.bg-remove-card__head h3 {
  margin: 0;
  font-size: 1.1rem;
}

.bg-remove-card__meta {
  font-size: 0.8rem;
  color: var(--slate);
}

.bg-remove-preview {
  border-radius: 1rem;
  border: 1px solid rgba(12, 26, 35, 0.12);
  background: #fff;
  min-height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem;
}

.bg-remove-preview--checker {
  background-color: #f7f4ee;
  background-image:
    linear-gradient(45deg, rgba(12, 26, 35, 0.08) 25%, transparent 25%),
    linear-gradient(-45deg, rgba(12, 26, 35, 0.08) 25%, transparent 25%),
    linear-gradient(45deg, transparent 75%, rgba(12, 26, 35, 0.08) 75%),
    linear-gradient(-45deg, transparent 75%, rgba(12, 26, 35, 0.08) 75%);
  background-size: 24px 24px;
  background-position: 0 0, 0 12px, 12px -12px, -12px 0px;
}

.bg-remove-preview img {
  max-width: 100%;
  max-height: 320px;
  border-radius: 0.8rem;
}

.bg-remove-empty {
  font-size: 0.9rem;
  color: var(--slate);
  text-align: center;
}

.bg-remove-spinner {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 160px;
}

.bg-remove-status {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.85rem;
  color: var(--slate);
}

.bg-remove-download {
  margin-top: auto;
}

.bg-remove-options {
  margin-top: 1.5rem;
  padding: 1rem 1.2rem;
  border-radius: 1rem;
  background: rgba(12, 26, 35, 0.03);
  border: 1px solid rgba(12, 26, 35, 0.08);
}

.bg-remove-options__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.bg-remove-options__title {
  font-weight: 700;
  color: var(--ink);
}

.bg-remove-options__hint {
  font-size: 0.85rem;
  color: var(--slate);
}

.bg-remove-toggle {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.8rem;
}

.bg-remove-option {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.8rem;
  border-radius: 999px;
  border: 1px solid rgba(12, 26, 35, 0.1);
  background: #fff;
  font-size: 0.85rem;
  cursor: pointer;
}

.bg-remove-option input {
  margin: 0;
}

.bg-remove-option--active {
  border-color: rgba(47, 143, 131, 0.6);
  box-shadow: 0 8px 16px rgba(47, 143, 131, 0.12);
}

.bg-remove-custom {
  margin-top: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.85rem;
  color: var(--slate);
}

.bg-remove-hint {
  margin-top: 1rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.85rem;
  color: var(--slate);
}

@media (max-width: 768px) {
  .bg-remove-header {
    padding-right: 0;
    align-items: flex-start;
  }

  .bg-remove-actions {
    width: 100%;
    justify-content: flex-start;
    margin-right: 0;
  }

  .bg-remove-close {
    top: 0.75rem;
    right: 0.75rem;
  }
}

@media (max-width: 576px) {
  .bg-remove-card {
    padding: 1rem;
  }

  .bg-remove-preview {
    min-height: 190px;
  }
}

/*action-button*/
.action-btn {
  transition: color .2s ease, background-color .2s ease, box-shadow .2s ease;
  background: linear-gradient(135deg, var(--sun) 0%, var(--coral) 100%);
  color: #2a1d12;
  font-weight: 700;
  border-radius: 999px;
  border: 0;
  padding: 0.55rem 1.4rem;
  box-shadow: 0 12px 24px rgba(240, 124, 89, 0.25);
}

.action-btn:hover {
  box-shadow: 0 16px 30px rgba(240, 124, 89, 0.3);
}

/*block button*/
.block-button {
  background-color: #fff;
  background-image: linear-gradient(rgba(3, 4, 5, .08), rgba(0, 0, 0, .08));
  padding: 5px 8px;
  margin-top:4px;
  margin-left: 4px;
  margin-right:4px;
}

.block-button:hover {
  text-decoration: underline;
}

/*info-block*/
.info-block {
  background-color: #fff;
  padding: 24px;
  border-radius: 1.25rem;
  border: 1px solid rgba(12, 26, 35, 0.08);
  box-shadow: 0 12px 24px rgba(12, 26, 35, 0.08);
}

@media (max-width: 576px) {
  .info-block {
    min-height: 232px;
  }
}

.info-block-header {
  display: flex;
  gap: 16px;
  padding-bottom: 14px;
}

.info-block h3 {
  display: block;
  text-align: left;
  font-size: 1.35rem;
  line-height: 1.3;
  margin: 0;
}

@media (max-width: 430px) {
  .info-block h3 {
    font-size: 1.4rem;
  }
}

.info-block-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 48px;
  width: 48px;
  background-color: var(--mist);
  border-radius: 8px;
  font-size:1.5rem;
  color: var(--sea);
}

@media (max-width: 768px) {

  .info-block-header {
    flex-direction: column;
    align-items: center;
    gap: 0;
    padding-bottom:0;
  }

  .info-block-header h3 {
    display: block;
    text-align: center;
    margin-bottom: 10px;
  }

}

/*info-item*/

.info-item-content {
  background-color: #fff;
  border-radius: 1.5rem;
  border: 1px solid rgba(12, 26, 35, 0.08);
  box-shadow: 0 12px 24px rgba(12, 26, 35, 0.08);
  padding: 1.3rem 1.6rem;
  text-align: left;
}
.info-item-icon {
  font-size: 2rem;
  color: var(--sea);
  margin-bottom: 0.75rem;
}
.info-item-content h3 {
  font-size: 1.35rem;
  line-height: 1.3;
  color: var(--ink);
}


/*accordion*/
.accordion-button:not(.collapsed) {
  color: var(--sea);
  background-color: #fff;
}

.accordion.accordion-flush .accordion-item {
  border: 1px solid rgba(12, 26, 35, 0.08);
  border-radius: 1rem;
  margin-bottom: 0.75rem;
  overflow: hidden;
}

.accordion.accordion-flush .accordion-item:first-of-type,
.accordion.accordion-flush .accordion-item:last-of-type {
  border-top: 1px solid rgba(12, 26, 35, 0.08);
  border-bottom: 1px solid rgba(12, 26, 35, 0.08);
}

.accordion-button {
  font-weight: 600;
  color: var(--ink);
  background-color: #fff;
}

/*base-64-textarea */
.base-64-textarea {
  border: 1px solid rgba(12, 26, 35, 0.2);
  line-height: 1.4;
  padding: 0.75rem;
  min-height:75px;
  font-family: "Courier New", monospace;
  font-size: 0.85rem;
  border-radius: 0.75rem;
}

.base64-input {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.base64-input__header {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.2rem;
  align-items: center;
  justify-content: space-between;
}

.base64-input__title {
  font-weight: 700;
  color: var(--ink);
}

.base64-input__subtitle {
  font-size: 0.85rem;
  color: var(--slate);
  max-width: 320px;
}

.base64-input__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.base64-input__field {
  width: 100%;
  min-height: 225px;
  border-radius: 1rem;
  border: 1px solid rgba(12, 26, 35, 0.12);
  background: #fff;
  color: var(--ink);
  font-family: "Courier New", monospace;
  font-size: 0.85rem;
  padding: 0.85rem 1rem;
  box-shadow: inset 0 1px 3px rgba(12, 26, 35, 0.06);
}

.base64-input__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: var(--slate);
}

.base64-input__note {
  font-size: 0.82rem;
  color: var(--slate);
}

.base64-input__note--warning {
  color: #9c6b2b;
}

.base64-input__note--muted code {
  font-family: "Courier New", monospace;
  font-size: 0.8rem;
  color: var(--ink);
  background: rgba(12, 26, 35, 0.05);
  padding: 0.1rem 0.4rem;
  border-radius: 0.35rem;
}

.base64-input__error {
  margin-top: 0.5rem;
  padding: 0.85rem 1rem;
  border-radius: 0.9rem;
  border: 1px solid rgba(209, 62, 62, 0.25);
  background: rgba(255, 233, 233, 0.6);
  color: #a83b3b;
}

.base64-input__error-title {
  font-weight: 600;
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

.base64-error-list {
  margin: 0.5rem 0 0;
  padding-left: 1.2rem;
  font-size: 0.82rem;
}

.base64-preview__placeholder {
  color: #a9a9a9;
  margin-top: 2px;
}

.base64-preview__loading {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  color: var(--slate);
  font-size: 0.9rem;
}

.base64-preview__error {
  margin-top: 2px;
}

.base64-preview__meta {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.75rem;
}

.base64-preview__status {
  margin-top: 0.75rem;
  font-size: 0.9rem;
  color: #2ecc71;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
}

.base64-preview__actions {
  margin-top: 1.5rem;
}

.base64-preview__note {
  margin-top: 0.6rem;
  font-size: 0.8rem;
  color: var(--slate);
}

.base64-output {
  margin-top: 1rem;
  text-align: left;
  background: rgba(247, 244, 238, 0.7);
  border: 1px solid rgba(12, 26, 35, 0.12);
  border-radius: 1rem;
  padding: 1rem;
  box-shadow: 0 16px 36px rgba(12, 26, 35, 0.08);
}

.base64-output__header {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem 1rem;
}

.base64-output__title {
  font-weight: 700;
  color: var(--ink);
}

.base64-output__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.35rem;
  font-size: 0.8rem;
  color: var(--slate);
}

.base64-pill {
  padding: 0.2rem 0.7rem;
  border-radius: 999px;
  background: rgba(12, 26, 35, 0.08);
}

.base64-output__field {
  width: 100%;
  margin-top: 0.85rem;
  min-height: 180px;
  max-height: 320px;
  border-radius: 0.9rem;
  border: 1px solid rgba(12, 26, 35, 0.12);
  background: #0c1a23;
  color: #f7f4ee;
  font-family: "Courier New", monospace;
  font-size: 0.82rem;
  line-height: 1.5;
  padding: 0.85rem 1rem;
  resize: vertical;
}

.base64-output__field:focus {
  outline: 2px solid rgba(246, 195, 92, 0.5);
  outline-offset: 2px;
}

.base64-output__note {
  margin-top: 0.6rem;
  font-size: 0.8rem;
  color: var(--slate);
}

.base64-output__options {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 0.85rem;
}

.base64-option {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  border: 1px solid rgba(12, 26, 35, 0.12);
  background: rgba(12, 26, 35, 0.04);
  font-size: 0.8rem;
  color: var(--slate);
}

.base64-option input {
  accent-color: var(--sea);
}

.action-btn--small {
  padding: 0.5rem 1rem;
  font-size: 0.9rem;
}

.action-btn--ghost {
  background: transparent;
  border: 1px solid rgba(12, 26, 35, 0.2);
  color: var(--ink);
  box-shadow: none;
}

.action-btn--ghost:hover {
  background: rgba(12, 26, 35, 0.06);
}

/*spin*/
.spin {
  display: inline-block;
  animation: spin 2s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/*tips*/
.insight-card {
  position: relative;
  height: 100%;
  padding: 1.5rem 1.6rem;
  border-radius: 1.5rem;
  border: 1px solid rgba(12, 26, 35, 0.1);
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.98), rgba(247, 244, 238, 0.86));
  box-shadow: 0 14px 28px rgba(12, 26, 35, 0.08);
  overflow: hidden;
}

.insight-card::after {
  content: '';
  position: absolute;
  top: -50px;
  right: -50px;
  width: 140px;
  height: 140px;
  background: radial-gradient(circle, rgba(246, 195, 92, 0.18), rgba(47, 143, 131, 0.08), rgba(246, 195, 92, 0));
  opacity: 0.6;
  z-index: 0;
}

.insight-card--tip::after {
  background: radial-gradient(circle, rgba(47, 143, 131, 0.18), rgba(47, 143, 131, 0));
  opacity: 0.5;
}

.insight-card--learn {
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.98), rgba(238, 242, 243, 0.86));
}

.insight-card__eyebrow {
  position: relative;
  z-index: 1;
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--sea);
  margin-bottom: 0.5rem;
}

.insight-card__title {
  position: relative;
  z-index: 1;
  font-size: 1.25rem;
  line-height: 1.3;
  color: var(--ink);
  margin-bottom: 0.75rem;
}

.insight-card__body {
  position: relative;
  z-index: 1;
  color: var(--slate);
}

.insight-card__body p {
  margin-bottom: 0.6rem;
}

.insight-card__body a {
  color: var(--sea);
  font-weight: 600;
  text-decoration: none;
}

.insight-card__body a:hover {
  color: var(--coral);
  text-decoration: underline;
}

.insight-card__body code {
  background: rgba(12, 26, 35, 0.08);
  padding: 0.1rem 0.35rem;
  border-radius: 0.35rem;
  font-family: "Courier New", monospace;
  font-size: 0.85rem;
}

.insight-card__body ul,
.insight-card__body ol {
  padding-left: 1.2rem;
  margin-bottom: 0;
}

.insight-card__body li {
  margin-bottom: 0.35rem;
}

.tip-item-content {
  display: inline-block;
  margin: 0 4px 1.5em 4px;
  padding: 1.4rem 1.6rem;
  page-break-inside: avoid;
  break-inside: avoid;
  text-align: left;
  background-color: #fff;
  border-radius: 1.5rem;
  border: 1px solid rgba(12, 26, 35, 0.08);
  box-shadow: 0 12px 24px rgba(12, 26, 35, 0.08);
  width:100%;
}

/*instruction*/
.instruction-content {
  background-color: #fff;
  border-radius: 1.5rem;
  border: 1px solid rgba(12, 26, 35, 0.08);
  box-shadow: 0 12px 24px rgba(12, 26, 35, 0.08);
}

/*badge & bio-image*/

.creator-bio {
  background-color: #fff;
  border-radius: 1.5rem;
  border: 1px solid rgba(12, 26, 35, 0.08);
  box-shadow: 0 16px 32px rgba(12, 26, 35, 0.08);
  padding: 24px;
  color: var(--slate);
}

.creator-bio h3 {
  font-size: 1.2rem;
  color: var(--ink);
  margin-bottom: 0.4rem;
}

.creator-bio p {
  margin-bottom: 0.6rem;
  color: var(--slate);
}

.team-link {
  color: var(--sea);
  font-weight: 600;
  text-decoration: none;
}

.team-link:hover {
  color: var(--coral);
}

.extra-info {
  background: #fff;
  border: 1px solid rgba(12, 26, 35, 0.08);
  border-radius: 1.5rem;
  padding: 1.5rem 1.75rem;
  box-shadow: 0 12px 24px rgba(12, 26, 35, 0.08);
  margin-bottom: 1.5rem;
}

.content-panel {
  background: #fff;
  border: 1px solid rgba(12, 26, 35, 0.08);
  border-radius: 1.5rem;
  padding: 2.5rem;
  box-shadow: 0 16px 32px rgba(12, 26, 35, 0.08);
}

.content-panel h1,
.content-panel h2,
.content-panel h3 {
  font-weight: 700;
  color: var(--ink);
}

.content-panel h2 {
  margin-top: 2.4rem;
  margin-bottom: 1rem;
  border-bottom: 1px solid rgba(12, 26, 35, 0.08);
  padding-bottom: 0.5rem;
}

.content-panel p,
.content-panel li {
  line-height: 1.7;
  color: var(--slate);
}

.contact-methods a {
  font-size: 1.05rem;
  text-decoration: none;
  color: var(--sea);
  font-weight: 600;
}

.contact-methods a:hover {
  color: var(--coral);
  text-decoration: underline;
}

.guide-hero {
  text-align: left;
  padding: 2.5rem 2.5rem 2rem;
  border-radius: 1.75rem;
  background: radial-gradient(circle at top right, rgba(47, 143, 131, 0.12), rgba(247, 244, 238, 0.9)),
    #fff;
  border: 1px solid rgba(12, 26, 35, 0.08);
  box-shadow: 0 18px 32px rgba(12, 26, 35, 0.08);
}

.guide-hero h1 {
  font-size: 2.4rem;
  line-height: 1.1;
  color: var(--ink);
}

.guide-hero p {
  font-size: 1.1rem;
  color: var(--slate);
  max-width: 720px;
}

@media (max-width: 768px) {
  .guide-hero {
    padding: 2rem 1.5rem;
  }

  .guide-hero h1 {
    font-size: 2rem;
  }
}

.format-grid {
  display: grid;
  gap: 1.2rem;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
}

.format-card {
  background: #fff;
  border: 1px solid rgba(12, 26, 35, 0.08);
  border-radius: 1.25rem;
  padding: 1.25rem 1.4rem;
  box-shadow: 0 12px 24px rgba(12, 26, 35, 0.08);
}

.format-card__tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
  color: var(--sea);
}

.format-card__title {
  font-size: 1.25rem;
  margin: 0.35rem 0 0.6rem;
  color: var(--ink);
}

.format-card__body {
  color: var(--slate);
}

.format-links a {
  display: inline-flex;
  margin-right: 0.75rem;
  margin-top: 0.4rem;
  font-weight: 600;
  color: var(--sea);
  text-decoration: none;
}

.format-links a:hover {
  color: var(--coral);
  text-decoration: underline;
}

/*converter marks*/

.converter-mark {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-wrap: wrap;
}

.converter-mark__icon {
  width: 28px;
  height: 28px;
  border-radius: 9px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  background: var(--mist);
  color: var(--sea);
}

.converter-format {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  flex-wrap: wrap;
}

.format-pill {
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 700;
  background: rgba(12, 26, 35, 0.08);
  color: var(--ink);
}

.format-pill--secondary {
  background: rgba(12, 26, 35, 0.05);
  color: var(--slate);
}

.format-connector {
  font-size: 1rem;
  color: var(--slate);
  line-height: 1;
}

.converter-mark--image {
  --accent: var(--sea);
  --accent-soft: rgba(47, 143, 131, 0.15);
}

.converter-mark--video {
  --accent: #d06b48;
  --accent-soft: rgba(208, 107, 72, 0.15);
}

.converter-mark--audio {
  --accent: #556bd9;
  --accent-soft: rgba(85, 107, 217, 0.15);
}

.converter-mark--tool {
  --accent: #c97d1b;
  --accent-soft: rgba(201, 125, 27, 0.15);
}

.converter-mark--image .converter-mark__icon,
.converter-mark--video .converter-mark__icon,
.converter-mark--audio .converter-mark__icon,
.converter-mark--tool .converter-mark__icon {
  background: var(--accent-soft);
  color: var(--accent);
}

.converter-mark--image .format-pill,
.converter-mark--video .format-pill,
.converter-mark--audio .format-pill,
.converter-mark--tool .format-pill {
  background: var(--accent-soft);
  color: var(--accent);
}

.converter-mark--image .format-pill--secondary,
.converter-mark--video .format-pill--secondary,
.converter-mark--audio .format-pill--secondary,
.converter-mark--tool .format-pill--secondary {
  background: rgba(12, 26, 35, 0.05);
  color: var(--slate);
}

.tool-hero-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  text-align: center;
}

.tool-hero-title .converter-mark__icon {
  width: 34px;
  height: 34px;
  font-size: 1.15rem;
}

.tool-hero-title .format-pill {
  font-size: 0.55rem;
}

.bio-image {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: transparent;
  padding: 0;
}

.bio-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 11px;
}

.brand-mark--badge {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  font-size: 1.5rem;
  margin-right: 0;
}

/*footer*/

.site-footer {
  background-color: var(--ink);
  color: rgba(255, 255, 255, 0.7);
  padding: 4rem 0 2.5rem;
}

.site-footer .brand-text {
  color: #fff;
}

.site-footer .brand-domain {
  color: var(--sun);
}

.site-footer p {
  color: rgba(255, 255, 255, 0.7);
}

.footer-title {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.7rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 1rem;
}

.footer-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-list li {
  margin-bottom: 0.55rem;
}

.footer-list a,
.footer-social a {
  color: rgba(255, 255, 255, 0.78);
  text-decoration: none;
}

.footer-list a:hover,
.footer-social a:hover {
  color: #fff;
}

.footer-social {
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
  font-size: 0.85rem;
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.78);
  text-decoration: none;
}

.footer-bottom a:hover {
  color: #fff;
}
