@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+TC:wght@300;400;500;700;900&family=Noto+Serif+TC:wght@300;400;500;700;900&display=swap");
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
}

html {
  position: relative;
  min-height: 100%;
}

body {
  background-color: #f4f4e9;
  margin: 0;
  font-family: "Noto Sans TC", "Noto Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}

.site__header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: #f2f2c6;
  min-height: 4rem;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.site__header .header__wrapper {
  width: min(100%, 67.5rem);
  margin: 0 auto;
  padding: 1rem 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.site__header .header__wrapper .nav {
  margin-inline-start: auto;
  display: flex;
  gap: 2rem;
}
@media (max-width: 960px) {
  .site__header .header__wrapper .nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 250px;
    height: 100vh;
    background-color: #f2f2c6;
    flex-direction: column;
    padding: 5rem 2rem 2rem;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
    transition: right 0.3s ease-in-out;
    margin-inline-start: 0;
    gap: 1.5rem;
    z-index: 999;
  }
  .site__header .header__wrapper .nav.active {
    right: 0;
  }
}
.site__header .header__wrapper .nav a {
  font-size: 1.125rem;
  text-decoration: none;
  color: #222;
  font-weight: 500;
  transition: color 0.2s ease;
  padding: 0.25rem 0;
}
.site__header .header__wrapper .nav a:hover {
  color: #0067cf;
}
.site__header .nav__toggle {
  display: none;
}
@media (max-width: 960px) {
  .site__header .nav__toggle {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    position: absolute;
    top: 1.35rem;
    right: 1.5rem;
    cursor: pointer;
    z-index: 1001;
  }
}
.site__header .nav__toggle .bar {
  height: 3px;
  width: 100%;
  background-color: #222;
  border-radius: 3px;
  transition: all 0.3s ease;
}
.site__header .nav__toggle.active .bar:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}
.site__header .nav__toggle.active .bar:nth-child(2) {
  opacity: 0;
}
.site__header .nav__toggle.active .bar:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

.site__footer .footer__wrapper {
  width: min(100%, 67.5rem);
  margin: 0 auto;
  padding: 1rem 1rem 1rem;
  display: grid;
  gap: 1.5rem;
}
.site__footer .footer__wrapper .footer__links {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
}
.site__footer .footer__wrapper .footer__links a {
  color: #fff;
  text-decoration: none;
  font-size: 1rem;
}
.site__footer .footer__wrapper .footer__links a:hover {
  text-decoration: underline;
}

.form-floating > .form-control-plaintext::-moz-placeholder, .form-floating > .form-control::-moz-placeholder {
  color: var(--bs-secondary-color);
  text-align: end;
}

.form-floating > .form-control-plaintext::placeholder,
.form-floating > .form-control::placeholder {
  color: var(--bs-secondary-color);
  text-align: end;
}

.form-floating > .form-control-plaintext:focus::-moz-placeholder, .form-floating > .form-control:focus::-moz-placeholder {
  text-align: start;
}

.form-floating > .form-control-plaintext:focus::placeholder,
.form-floating > .form-control:focus::placeholder {
  text-align: start;
}

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

.font-sans {
  font-family: "Noto Sans TC", "Noto Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

.font-serif {
  font-family: "Noto Serif TC", "Noto Serif", Georgia, "Times New Roman", serif;
}

.validation-summary {
  width: min(100%, 32.5rem);
  margin: 1.5rem auto;
  background: #ffecec;
  border: 1px solid #f5aca6;
  padding: 0.75rem 1rem;
  border-radius: 6px;
  color: #b30000;
}
.validation-summary ul {
  margin: 0.5rem 0 0 1.2rem;
  padding: 0;
}
.validation-summary li {
  margin-bottom: 0.4rem;
}

.notice-success {
  background: #e6ffed;
  border: 1px solid #34c759;
  color: #245e2d;
  padding: 0.6rem 0.9rem;
  border-radius: 6px;
  margin-bottom: 1rem;
}

.loading {
  opacity: 0.6;
  pointer-events: none;
}

.sec__wrapper {
  width: min(100%, 62.5rem);
  margin: 0 auto;
  padding: 2.5rem 1rem 4.5rem;
}

h1,
h2,
h3 {
  line-height: 1.75;
}

h1 {
  font-size: 2.5rem;
  margin: 3.75rem 0;
}
@media (max-width: 960px) {
  h1 {
    font-size: 2rem;
    margin: 2.5rem 0;
  }
}

h2 {
  font-size: 1.875rem;
  margin: 2.5rem 0;
}
@media (max-width: 960px) {
  h2 {
    font-size: 1.5rem;
    margin: 2rem 0;
  }
}

h3 {
  font-size: 1.5rem;
  margin: 2.5rem 0;
}
@media (max-width: 960px) {
  h3 {
    font-size: 1.25rem;
    margin: 2rem 0;
  }
}

p {
  font-size: 1.1875rem;
  line-height: 1.75;
  margin: 0 0 1.5rem;
}
@media (max-width: 960px) {
  p {
    font-size: 1rem;
  }
}
p:last-child {
  margin-bottom: 0;
}

ul,
ol {
  margin: 0 0 1.25rem 1.75rem;
  padding: 0;
}
ul li,
ol li {
  font-size: 1.125rem;
  margin-bottom: 0.75rem;
}

blockquote {
  margin: 1.5rem 0;
  padding: 1rem 2.5rem;
  border-left: 4px solid #004d9e;
  background-color: rgba(0, 77, 158, 0.05);
  color: #222;
  border-radius: 0 4px 4px 0;
  font-family: "Noto Serif TC", "Noto Serif", Georgia, "Times New Roman", serif;
}

.share-btn {
  display: inline-block;
  color: #e97132;
  padding: 0.75rem 1.5rem;
  border: 1px solid #e97132;
  border-radius: 100vw;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.2s;
}
.share-btn:hover {
  background-color: rgb(237.9427312775, 144.9030837004, 96.0572687225);
  color: #fff;
}
.share-btn.small {
  padding: 0.4rem 1rem;
  font-size: 0.9rem;
}

/* Added basic layout and typography for index page */
.page__index #banner {
  background-color: #101010;
  text-align: center;
}
.page__index #intro {
  padding: 0 0 3.5rem;
}

.initiators {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 0.75rem;
}
.initiators .initiator img {
  display: inline-block;
  height: 2.25rem;
  width: auto;
  margin-right: 0.35rem;
}
@media (max-width: 960px) {
  .initiators .initiator img {
    height: 1.75rem;
  }
}
.initiators .initiator span {
  vertical-align: middle;
}

.post__item {
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}
.post__item h3 {
  font-size: 1.25rem;
  color: #004d9e;
  margin-top: 0;
  margin-bottom: 1rem;
  line-height: 1.4;
}
.post__item p {
  margin-bottom: 1rem;
  color: #222;
}
.post__item p:last-child {
  margin-bottom: 0;
}

#petition {
  background-color: #e1e7ef;
  width: 100%;
  padding: 1.5rem 0 1.5rem;
  margin: 0 auto;
}
#petition h2 {
  text-align: center;
}
#petition #petitionForm {
  width: min(100%, 32.5rem);
  margin: 0 auto 2.5rem;
  display: grid;
  gap: 1rem;
  font-size: 1.25rem;
}
#petition #petitionForm label {
  font-weight: 600;
  display: block;
  margin-bottom: 0.25rem;
}
#petition #petitionForm input[type=text],
#petition #petitionForm input[type=email],
#petition #petitionForm select,
#petition #petitionForm textarea {
  width: 100%;
  box-sizing: border-box;
  padding: 0.5rem 0.6rem;
  border: 1px solid #bbb;
  border-radius: 4px;
  font: inherit;
  background: #fff;
}
#petition #petitionForm button[type=submit] {
  background: #004d9e;
  color: #fff;
  border: none;
  padding: 0.65rem 1.2rem;
  font-size: 1rem;
  border-radius: 4px;
  transition: background 0.2s ease;
  cursor: pointer;
}
#petition #petitionForm button[type=submit]:hover {
  background: #0067cf;
}
#petition .validation-summary {
  margin: 2.5rem auto;
}
#petition #globalMessage {
  margin: 2.5rem auto;
}
#petition #petitionInfo {
  display: grid;
  justify-items: center;
  gap: 1rem;
  padding: 2.5rem 1rem;
  /* Share block styles (expanded) */
}
#petition #petitionInfo h3 {
  font-size: 1.5rem;
  margin: 0;
}
#petition #petitionInfo > p {
  width: min(100%, 32.5rem);
  font-size: 1.25rem;
  color: #555;
  text-align: center;
}
#petition #petitionInfo .count {
  background-color: #fff;
  width: min(100%, 20rem);
  text-align: center;
  margin: 0 0 2rem;
}
#petition #petitionInfo .count h4 {
  font-size: 2.25rem;
  font-variant-numeric: tabular-nums;
  margin: 0;
}
#petition #petitionInfo .progress-wrapper {
  width: min(100%, 20rem);
  display: grid;
  gap: 0.4rem;
}
#petition #petitionInfo .progress-bar {
  position: relative;
  width: 100%;
  height: 1.1rem;
  background: #ddd;
  border-radius: 6px;
  overflow: hidden;
}
#petition #petitionInfo .progress-bar__fill {
  height: 100%;
  background: linear-gradient(90deg, #004d9e, #258cfb);
  width: 0;
  transition: width 0.6s ease;
}
#petition #petitionInfo .progress-text {
  font-size: 1.125rem;
  text-align: center;
  color: #333;
  margin: 1rem 0 1.5rem;
}
#petition #petitionInfo .share-block {
  background: #fff;
  border: 1px solid #d8d8d8;
  border-radius: 10px;
  width: min(100%, 28rem);
  padding: 1.25rem 1.25rem 1.35rem;
  display: grid;
  gap: 1rem;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
  text-align: center;
  margin: 0 auto 3rem;
}
#petition #petitionInfo .share-block h3 {
  margin: 0;
  font-size: 1.25rem;
}
#petition #petitionInfo .share-block .share-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.625rem;
  justify-content: center;
}
#petition #petitionInfo .share-block .share-btn {
  background: #004d9e;
  color: #fff;
  text-decoration: none;
  border: none;
  padding: 0.55rem 0.9rem;
  font-size: 0.85rem;
  line-height: 1.2;
  border-radius: 5px;
  cursor: pointer;
  font-family: inherit;
  transition: background 0.18s ease;
}
#petition #petitionInfo .share-block .share-btn:hover {
  background: #0067cf;
}
#petition #petitionInfo .share-block .share-hint {
  font-size: 1rem;
  color: #555;
}
#petition form > div {
  margin-bottom: 0.75rem;
}

#initiators {
  background-color: #fff;
  padding: 3rem 0;
}
#initiators .initiators-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}
@media (max-width: 960px) {
  #initiators .initiators-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
}
#initiators .initiator-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
#initiators .initiator-item .logo {
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.5rem;
}
#initiators .initiator-item .logo img {
  max-height: 100%;
  max-width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
#initiators .initiator-item .name {
  font-size: 0.9rem;
  color: #222;
  font-weight: 500;
  line-height: 1.4;
}

.site__footer {
  background-color: #002a97;
  color: white;
  text-align: center;
  padding: 2.5rem 1rem 2.5rem;
}
.site__footer .footer__wrapper {
  width: min(100%, 67.5rem);
  margin: 0 auto;
}
.site__footer .footer__wrapper p {
  margin: 0 0 1rem;
}/*# sourceMappingURL=style.css.map */