@import "./colors/crimson.css";

* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background: var(--t1-source-background);
  color: var(--t1-source-text);
}
.t1-source-header {
  position: sticky;
  top: 0;
  background: var(--t1-source-header-background);
  color: var(--t1-source-header-text);
  border-bottom: 1px solid var(--t1-source-border);
  z-index: 5;
}
.t1-source-header-block {
  max-width: 1200px;
  margin: auto;
  min-height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  padding: 12px 20px;
}
.t1-source-logo { color: var(--t1-source-header-text); font-weight: 700; text-decoration: none; }
.t1-source-logo img { height: 48px; max-width: 210px; object-fit: contain; }
.t1-source-menu {
  display: flex;
  list-style: none;
  gap: 22px;
  margin: 0;
  padding: 0;
  font-weight: 600;
}
.t1-source-menu li { white-space: nowrap; }
.t1-source-menu a { color: inherit; text-decoration: none; }
.t1-source-menu a:hover, .t1-source-menu li[aria-current="page"] a { color: var(--t1-source-accent); }
.t1-source-actions { display: flex; gap: 10px; align-items: center; }
.t1-source-btn, .t1-source-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--t1-source-button);
  color: var(--t1-source-button-text);
  border-radius: 8px;
  padding: 12px 18px;
  text-decoration: none;
  cursor: pointer;
}
.t1-source-btn:hover, .t1-source-button:hover { background: var(--t1-source-button-hover); }
.t1-source-page { max-width: 1200px; margin: auto; background: var(--t1-source-page-background); }
.t1-source-breadcrumbs {
  max-width: 1200px;
  margin: 18px auto -12px;
  padding: 0 20px;
  display: flex;
  justify-content: center;
  gap: 9px;
  color: var(--t1-source-muted);
  font-size: 14px;
}
.t1-source-breadcrumbs a { color: var(--t1-source-accent); }
.t1-source-section { padding: 45px 20px; }
.t1-source-section:first-child { background: var(--t1-source-hero-background); }
.t1-source-section:nth-child(even) { background: var(--t1-source-section-background); }
.t1-source-block { text-align: center; }
h1 {
  font-size: 42px;
  line-height: 1.15;
  margin: 0 auto 25px;
  max-width: 900px;
}
h2 { font-size: 32px; margin: 0 auto 25px; max-width: 900px; }
h3 { font-size: 22px; margin: 30px auto 12px; max-width: 900px; }
.t1-source-buttons { display: flex; justify-content: center; gap: 15px; margin-bottom: 30px; }
.t1-source-image-wrapper {
  width: 100%;
  max-width: 900px;
  height: 450px;
  margin: 25px auto;
  overflow: hidden;
  border-radius: 14px;
}
.t1-source-image-wrapper img { width: 100%; height: 100%; object-fit: cover; }
p, .t1-source-block ul {
  max-width: 900px;
  margin: 25px auto;
  font-size: 18px;
  line-height: 1.7;
}
.t1-source-block ul { display: inline-block; text-align: left; }
.t1-source-footer {
  margin-top: 20px;
  padding: 38px 20px;
  border-top: 1px solid var(--t1-source-border);
  background: var(--t1-source-footer-background);
  color: var(--t1-source-footer-text);
}
.t1-source-footer-block { max-width: 1200px; margin: auto; text-align: center; }
.t1-source-footer-brand { color: var(--t1-source-footer-text); font-size: 22px; font-weight: 700; text-decoration: none; }
.t1-source-footer-menu { display: flex; justify-content: center; flex-wrap: wrap; gap: 10px 22px; margin: 20px 0; }
.t1-source-footer-menu a { color: var(--t1-source-footer-text); font-weight: 600; text-decoration: none; }
.t1-source-footer-menu a:hover { color: var(--t1-source-accent); }
.t1-source-footer p { max-width: 900px; margin: 8px auto; color: var(--t1-source-footer-muted); font-size: 14px; line-height: 1.6; }
@media (max-width: 900px) {
  .t1-source-header-block, .t1-source-menu, .t1-source-actions { flex-wrap: wrap; }
  .t1-source-menu { display: none; }
  h1 { font-size: 30px; }
  h2 { font-size: 25px; }
  .t1-source-image-wrapper { height: 260px; }
  .t1-source-buttons { flex-direction: column; align-items: center; }
}
