/*
Theme Name: FincoLoan Next
Theme URI: https://fincoloan.com/
Author: Praveen Kumar
Author URI: https://fincoloan.com/
Description: FincoLoan के लिए हल्की, responsive और Hindi-first custom WordPress theme.
Version: 0.1.0
Requires at least: 6.5
Requires PHP: 8.0
Text Domain: fincoloan-next
Tags: custom-logo, custom-menu, featured-images, translation-ready
*/

:root {
  --finco-ink: #122033;
  --finco-muted: #607086;
  --finco-blue: #0759d6;
  --finco-blue-dark: #073b89;
  --finco-sky: #eaf3ff;
  --finco-line: #dce5ef;
  --finco-paper: #ffffff;
  --finco-soft: #f5f8fc;
  --finco-green: #087b58;
  --finco-warning: #a14f00;
  --finco-radius: 18px;
  --finco-shadow: 0 10px 30px rgba(18, 32, 51, 0.08);
  --finco-width: 1160px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--finco-paper);
  color: var(--finco-ink);
  font-family: system-ui, -apple-system, "Noto Sans Devanagari", "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: var(--finco-blue);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

button,
input,
select,
textarea {
  font: inherit;
}

.finco-wrap {
  width: min(var(--finco-width), calc(100% - 32px));
  margin-inline: auto;
}

.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.screen-reader-text:focus {
  z-index: 100000;
  top: 8px;
  left: 8px;
  width: auto;
  height: auto;
  padding: 10px 14px;
  clip: auto;
  background: #ffffff;
  color: var(--finco-ink);
}

.finco-sponsored-label,
.finco-affiliate-label {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 3px 9px;
  border: 1px solid #f1c27d;
  border-radius: 999px;
  background: #fff7e8;
  color: var(--finco-warning);
  font-size: 0.78rem;
  font-weight: 750;
  line-height: 1.2;
}

.finco-affiliate-disclosure {
  margin-block: 16px;
  padding: 12px 14px;
  border-left: 4px solid var(--finco-blue);
  border-radius: 0 10px 10px 0;
  background: var(--finco-sky);
  color: var(--finco-muted);
  font-size: 0.9rem;
}

@media (max-width: 620px) {
  .finco-wrap {
    width: min(var(--finco-width), calc(100% - 24px));
  }
}

