@charset "UTF-8";
/* We need to add display:inline in order to align the '>>' of the 'read more' link */
.post-excerpt p {
  display: inline;
}

/* Faint doodle pattern lives on the body background — see the body rule below. */
/* --- Theme Selection --- */
/* Options: 'default', 'cyberpunk', 'gruvbox', 'catppuccin', 'music', 'indian' */
:root {
  --bg-color: #ffffff;
  --text-color: #343a40;
  --text-muted: #666666;
  --heading-color: #212529;
  --post-text-color: #343a40;
  --link-color: #007bff;
  --link-hover-color: #0056b3;
  --navbar-bg: #ffffff;
  --navbar-link: #343a40;
  --card-bg: #ffffff;
  --card-footer-bg: #ffffff;
  --card-border: rgba(0, 0, 0, 0.08);
  --card-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
  --card-shadow-hover: 0 8px 25px rgba(0, 0, 0, 0.12);
  --card-shadow-brutal: 8px 8px 0px rgba(0, 0, 0, 0.1);
  --border-color: #dee2e6;
  --blockquote-bg: #f8f9fa;
  --blockquote-border: #007bff;
  --code-bg: #f8f9fa;
  --code-text: #e83e8c;
  --header-overlay: rgba(0, 0, 0, 0.55);
  --header-text-color: #ffffff;
  --accent-color: #000000;
  --highlight-color: rgba(0, 123, 255, 0.1);
  --active-cell-color: rgba(0, 123, 255, 0.2);
  --block-color: #000000;
}

/* Dark Mode Overrides */
html.dark-mode,
.dark-mode {
  --bg-color: #121212;
  --text-color: #e0e0e0;
  --text-muted: #bdbdbd;
  --heading-color: #ffffff;
  --post-text-color: #e0e0e0;
  --link-color: #90caf9;
  --link-hover-color: #bbdefb;
  --navbar-bg: #1e1e1e;
  --navbar-link: #e0e0e0;
  --card-bg: #1e1e1e;
  --card-footer-bg: #1e1e1e;
  --card-border: #333333;
  --card-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  --card-shadow-hover: 0 8px 25px rgba(0, 0, 0, 0.5);
  --card-shadow-brutal: 8px 8px 0px rgba(255, 255, 255, 0.05);
  --border-color: #333333;
  --blockquote-bg: #2a2a2a;
  --blockquote-border: #90caf9;
  --code-bg: #2a2a2a;
  --code-text: #e0e0e0;
  --header-overlay: rgba(0, 0, 0, 0.7);
  --header-text-color: #ffffff;
  --accent-color: #ffffff;
  --highlight-color: rgba(255, 255, 255, 0.1);
  --active-cell-color: rgba(255, 255, 255, 0.2);
  --block-color: #ffffff;
}

.highlight {
  background: #fff;
  border: 0;
  padding: 0;
  margin-bottom: 1.7rem;
}
.highlight .c {
  color: #999988;
  font-style: italic;
}
.highlight { /* Comment */ }
.highlight .err {
  color: #a61717;
  background-color: #e3d2d2;
}
.highlight { /* Error */ }
.highlight .k {
  font-weight: bold;
}
.highlight { /* Keyword */ }
.highlight .o {
  font-weight: bold;
}
.highlight { /* Operator */ }
.highlight .cm {
  color: #999988;
  font-style: italic;
}
.highlight { /* Comment.Multiline */ }
.highlight .cp {
  color: #999999;
  font-weight: bold;
}
.highlight { /* Comment.Preproc */ }
.highlight .c1 {
  color: #999988;
  font-style: italic;
}
.highlight { /* Comment.Single */ }
.highlight .cs {
  color: #999999;
  font-weight: bold;
  font-style: italic;
}
.highlight { /* Comment.Special */ }
.highlight .gd {
  color: #000000;
  background-color: #ffdddd;
}
.highlight { /* Generic.Deleted */ }
.highlight .gd .x {
  color: #000000;
  background-color: #ffaaaa;
}
.highlight { /* Generic.Deleted.Specific */ }
.highlight .ge {
  font-style: italic;
}
.highlight { /* Generic.Emph */ }
.highlight .gr {
  color: #aa0000;
}
.highlight { /* Generic.Error */ }
.highlight .gh {
  color: #999999;
}
.highlight { /* Generic.Heading */ }
.highlight .gi {
  color: #000000;
  background-color: #ddffdd;
}
.highlight { /* Generic.Inserted */ }
.highlight .gi .x {
  color: #000000;
  background-color: #aaffaa;
}
.highlight { /* Generic.Inserted.Specific */ }
.highlight .go {
  color: #888888;
}
.highlight { /* Generic.Output */ }
.highlight .gp {
  color: #555555;
}
.highlight { /* Generic.Prompt */ }
.highlight .gs {
  font-weight: bold;
}
.highlight { /* Generic.Strong */ }
.highlight .gu {
  color: #aaaaaa;
}
.highlight { /* Generic.Subheading */ }
.highlight .gt {
  color: #aa0000;
}
.highlight { /* Generic.Traceback */ }
.highlight .kc {
  font-weight: bold;
}
.highlight { /* Keyword.Constant */ }
.highlight .kd {
  font-weight: bold;
}
.highlight { /* Keyword.Declaration */ }
.highlight .kp {
  font-weight: bold;
}
.highlight { /* Keyword.Pseudo */ }
.highlight .kr {
  font-weight: bold;
}
.highlight { /* Keyword.Reserved */ }
.highlight .kt {
  color: #445588;
  font-weight: bold;
}
.highlight { /* Keyword.Type */ }
.highlight .m {
  color: #009999;
}
.highlight { /* Literal.Number */ }
.highlight .s {
  color: #d14;
}
.highlight { /* Literal.String */ }
.highlight .na {
  color: #008080;
}
.highlight { /* Name.Attribute */ }
.highlight .nb {
  color: #0086B3;
}
.highlight { /* Name.Builtin */ }
.highlight .nc {
  color: #445588;
  font-weight: bold;
}
.highlight { /* Name.Class */ }
.highlight .no {
  color: #008080;
}
.highlight { /* Name.Constant */ }
.highlight .ni {
  color: #800080;
}
.highlight { /* Name.Entity */ }
.highlight .ne {
  color: #990000;
  font-weight: bold;
}
.highlight { /* Name.Exception */ }
.highlight .nf {
  color: #990000;
  font-weight: bold;
}
.highlight { /* Name.Function */ }
.highlight .nn {
  color: #555555;
}
.highlight { /* Name.Namespace */ }
.highlight .nt {
  color: #000080;
}
.highlight { /* Name.Tag */ }
.highlight .nv {
  color: #008080;
}
.highlight { /* Name.Variable */ }
.highlight .ow {
  font-weight: bold;
}
.highlight { /* Operator.Word */ }
.highlight .w {
  color: #bbbbbb;
}
.highlight { /* Text.Whitespace */ }
.highlight .mf {
  color: #009999;
}
.highlight { /* Literal.Number.Float */ }
.highlight .mh {
  color: #009999;
}
.highlight { /* Literal.Number.Hex */ }
.highlight .mi {
  color: #009999;
}
.highlight { /* Literal.Number.Integer */ }
.highlight .mo {
  color: #009999;
}
.highlight { /* Literal.Number.Oct */ }
.highlight .sb {
  color: #d14;
}
.highlight { /* Literal.String.Backtick */ }
.highlight .sc {
  color: #d14;
}
.highlight { /* Literal.String.Char */ }
.highlight .sd {
  color: #d14;
}
.highlight { /* Literal.String.Doc */ }
.highlight .s2 {
  color: #d14;
}
.highlight { /* Literal.String.Double */ }
.highlight .se {
  color: #d14;
}
.highlight { /* Literal.String.Escape */ }
.highlight .sh {
  color: #d14;
}
.highlight { /* Literal.String.Heredoc */ }
.highlight .si {
  color: #d14;
}
.highlight { /* Literal.String.Interpol */ }
.highlight .sx {
  color: #d14;
}
.highlight { /* Literal.String.Other */ }
.highlight .sr {
  color: #009926;
}
.highlight { /* Literal.String.Regex */ }
.highlight .s1 {
  color: #d14;
}
.highlight { /* Literal.String.Single */ }
.highlight .ss {
  color: #990073;
}
.highlight { /* Literal.String.Symbol */ }
.highlight .bp {
  color: #999999;
}
.highlight { /* Name.Builtin.Pseudo */ }
.highlight .vc {
  color: #008080;
}
.highlight { /* Name.Variable.Class */ }
.highlight .vg {
  color: #008080;
}
.highlight { /* Name.Variable.Global */ }
.highlight .vi {
  color: #008080;
}
.highlight { /* Name.Variable.Instance */ }
.highlight .il {
  color: #009999;
}
.highlight { /* Literal.Number.Integer.Long */ }

td.rouge-code {
  width: 100%;
}

pre.lineno {
  color: rgba(153, 153, 153, 0.6);
}

.rating-holder {
  font-size: 16px;
  display: inline-block;
  background-color: #fff;
  border-radius: 1.5625em;
  box-sizing: border-box;
}

.c-rating button {
  display: inline-block;
  float: left;
  width: 1.25em;
  height: 1.25em;
  border: 0;
  text-indent: -9999px;
  outline: none;
  background: url("data:image/svg+xml;utf8,%3Csvg%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20width%3D%22512%22%20height%3D%22512%22%20viewBox%3D%220%200%20512%20512%22%3E%3Cpath%20fill%3D%22%23ddd%22%20d%3D%22M457.888 210.672l-139.504-20.272-62.384-126.4-62.384 126.4-139.504 20.272 100.944 98.384-23.84 138.928 124.768-65.6 124.768 65.6-23.84-138.928c0 0 100.944-98.384 100.944-98.384z%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E") center/cover no-repeat;
}

.c-rating[data-rating-value="0"] button:nth-child(-n+0) {
  background: url("data:image/svg+xml;utf8,%3Csvg%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20width%3D%22512%22%20height%3D%22512%22%20viewBox%3D%220%200%20512%20512%22%3E%3Cpath%20fill%3D%22gold%22%20d%3D%22M457.888 210.672l-139.504-20.272-62.384-126.4-62.384 126.4-139.504 20.272 100.944 98.384-23.84 138.928 124.768-65.6 124.768 65.6-23.84-138.928c0 0 100.944-98.384 100.944-98.384z%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E") center/cover no-repeat;
}

.c-rating[data-rating-value="0.25"] button:nth-child(-n+1) {
  background: url("data:image/svg+xml;utf8,%3Csvg%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20width%3D%22512%22%20height%3D%22512%22%20viewBox%3D%220%200%20512%20512%22%3E%3Cpath%20fill%3D%22gold%22%20d%3D%22M457.888 210.672l-139.504-20.272-62.384-126.4-62.384 126.4-139.504 20.272 100.944 98.384-23.84 138.928 124.768-65.6 124.768 65.6-23.84-138.928c0 0 100.944-98.384 100.944-98.384z%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E") center/cover no-repeat;
}

.c-rating[data-rating-value="0.25"] button:nth-child(1) {
  background: url("data:image/svg+xml;utf8,%3Csvg%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20width%3D%22512%22%20height%3D%22512%22%20viewBox%3D%220%200%20512%20512%22%3E%3Cpath%20fill%3D%22gold%22%20d%3D%22M196.208 415.2v-224.8l-139.504 20.272 100.944 98.384-23.84 138.928z%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E") center/cover no-repeat, url("data:image/svg+xml;utf8,%3Csvg%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20width%3D%22512%22%20height%3D%22512%22%20viewBox%3D%220%200%20512%20512%22%3E%3Cpath%20fill%3D%22%23ddd%22%20d%3D%22M457.888 210.672l-139.504-20.272-62.384-126.4-62.384 126.4-139.504 20.272 100.944 98.384-23.84 138.928 124.768-65.6 124.768 65.6-23.84-138.928c0 0 100.944-98.384 100.944-98.384z%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E") center/cover no-repeat;
}

.c-rating[data-rating-value="0.5"] button:nth-child(-n+1) {
  background: url("data:image/svg+xml;utf8,%3Csvg%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20width%3D%22512%22%20height%3D%22512%22%20viewBox%3D%220%200%20512%20512%22%3E%3Cpath%20fill%3D%22gold%22%20d%3D%22M457.888 210.672l-139.504-20.272-62.384-126.4-62.384 126.4-139.504 20.272 100.944 98.384-23.84 138.928 124.768-65.6 124.768 65.6-23.84-138.928c0 0 100.944-98.384 100.944-98.384z%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E") center/cover no-repeat;
}

.c-rating[data-rating-value="0.5"] button:nth-child(1) {
  background: url("data:image/svg+xml;utf8,%3Csvg%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20width%3D%22512%22%20height%3D%22512%22%20viewBox%3D%220%200%20512%20512%22%3E%3Cpath%20fill%3D%22gold%22%20d%3D%22M258.672 64l-62.384 126.4-139.504 20.272 100.944 98.384-23.84 138.928 124.768-65.6v-318.4z%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E") center/cover no-repeat, url("data:image/svg+xml;utf8,%3Csvg%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20width%3D%22512%22%20height%3D%22512%22%20viewBox%3D%220%200%20512%20512%22%3E%3Cpath%20fill%3D%22%23ddd%22%20d%3D%22M457.888 210.672l-139.504-20.272-62.384-126.4-62.384 126.4-139.504 20.272 100.944 98.384-23.84 138.928 124.768-65.6 124.768 65.6-23.84-138.928c0 0 100.944-98.384 100.944-98.384z%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E") center/cover no-repeat;
}

.c-rating[data-rating-value="0.75"] button:nth-child(-n+1) {
  background: url("data:image/svg+xml;utf8,%3Csvg%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20width%3D%22512%22%20height%3D%22512%22%20viewBox%3D%220%200%20512%20512%22%3E%3Cpath%20fill%3D%22gold%22%20d%3D%22M457.888 210.672l-139.504-20.272-62.384-126.4-62.384 126.4-139.504 20.272 100.944 98.384-23.84 138.928 124.768-65.6 124.768 65.6-23.84-138.928c0 0 100.944-98.384 100.944-98.384z%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E") center/cover no-repeat;
}

.c-rating[data-rating-value="0.75"] button:nth-child(1) {
  background: url("data:image/svg+xml;utf8,%3Csvg%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20width%3D%22512%22%20height%3D%22512%22%20viewBox%3D%220%200%20512%20512%22%3E%3Cpath%20fill%3D%22gold%22%20d%3D%22M321.616 190.496l-0.656-0.096-62.384-126.4-62.384 126.4-139.504 20.272 100.944 98.384-23.84 138.928 124.768-65.6 63.024 33.136z%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E") center/cover no-repeat, url("data:image/svg+xml;utf8,%3Csvg%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20width%3D%22512%22%20height%3D%22512%22%20viewBox%3D%220%200%20512%20512%22%3E%3Cpath%20fill%3D%22%23ddd%22%20d%3D%22M457.888 210.672l-139.504-20.272-62.384-126.4-62.384 126.4-139.504 20.272 100.944 98.384-23.84 138.928 124.768-65.6 124.768 65.6-23.84-138.928c0 0 100.944-98.384 100.944-98.384z%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E") center/cover no-repeat;
}

.c-rating[data-rating-value="1"] button:nth-child(-n+1) {
  background: url("data:image/svg+xml;utf8,%3Csvg%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20width%3D%22512%22%20height%3D%22512%22%20viewBox%3D%220%200%20512%20512%22%3E%3Cpath%20fill%3D%22gold%22%20d%3D%22M457.888 210.672l-139.504-20.272-62.384-126.4-62.384 126.4-139.504 20.272 100.944 98.384-23.84 138.928 124.768-65.6 124.768 65.6-23.84-138.928c0 0 100.944-98.384 100.944-98.384z%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E") center/cover no-repeat;
}

.c-rating[data-rating-value="1.25"] button:nth-child(-n+2) {
  background: url("data:image/svg+xml;utf8,%3Csvg%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20width%3D%22512%22%20height%3D%22512%22%20viewBox%3D%220%200%20512%20512%22%3E%3Cpath%20fill%3D%22gold%22%20d%3D%22M457.888 210.672l-139.504-20.272-62.384-126.4-62.384 126.4-139.504 20.272 100.944 98.384-23.84 138.928 124.768-65.6 124.768 65.6-23.84-138.928c0 0 100.944-98.384 100.944-98.384z%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E") center/cover no-repeat;
}

.c-rating[data-rating-value="1.25"] button:nth-child(2) {
  background: url("data:image/svg+xml;utf8,%3Csvg%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20width%3D%22512%22%20height%3D%22512%22%20viewBox%3D%220%200%20512%20512%22%3E%3Cpath%20fill%3D%22gold%22%20d%3D%22M196.208 415.2v-224.8l-139.504 20.272 100.944 98.384-23.84 138.928z%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E") center/cover no-repeat, url("data:image/svg+xml;utf8,%3Csvg%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20width%3D%22512%22%20height%3D%22512%22%20viewBox%3D%220%200%20512%20512%22%3E%3Cpath%20fill%3D%22%23ddd%22%20d%3D%22M457.888 210.672l-139.504-20.272-62.384-126.4-62.384 126.4-139.504 20.272 100.944 98.384-23.84 138.928 124.768-65.6 124.768 65.6-23.84-138.928c0 0 100.944-98.384 100.944-98.384z%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E") center/cover no-repeat;
}

.c-rating[data-rating-value="1.5"] button:nth-child(-n+2) {
  background: url("data:image/svg+xml;utf8,%3Csvg%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20width%3D%22512%22%20height%3D%22512%22%20viewBox%3D%220%200%20512%20512%22%3E%3Cpath%20fill%3D%22gold%22%20d%3D%22M457.888 210.672l-139.504-20.272-62.384-126.4-62.384 126.4-139.504 20.272 100.944 98.384-23.84 138.928 124.768-65.6 124.768 65.6-23.84-138.928c0 0 100.944-98.384 100.944-98.384z%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E") center/cover no-repeat;
}

.c-rating[data-rating-value="1.5"] button:nth-child(2) {
  background: url("data:image/svg+xml;utf8,%3Csvg%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20width%3D%22512%22%20height%3D%22512%22%20viewBox%3D%220%200%20512%20512%22%3E%3Cpath%20fill%3D%22gold%22%20d%3D%22M258.672 64l-62.384 126.4-139.504 20.272 100.944 98.384-23.84 138.928 124.768-65.6v-318.4z%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E") center/cover no-repeat, url("data:image/svg+xml;utf8,%3Csvg%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20width%3D%22512%22%20height%3D%22512%22%20viewBox%3D%220%200%20512%20512%22%3E%3Cpath%20fill%3D%22%23ddd%22%20d%3D%22M457.888 210.672l-139.504-20.272-62.384-126.4-62.384 126.4-139.504 20.272 100.944 98.384-23.84 138.928 124.768-65.6 124.768 65.6-23.84-138.928c0 0 100.944-98.384 100.944-98.384z%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E") center/cover no-repeat;
}

.c-rating[data-rating-value="1.75"] button:nth-child(-n+2) {
  background: url("data:image/svg+xml;utf8,%3Csvg%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20width%3D%22512%22%20height%3D%22512%22%20viewBox%3D%220%200%20512%20512%22%3E%3Cpath%20fill%3D%22gold%22%20d%3D%22M457.888 210.672l-139.504-20.272-62.384-126.4-62.384 126.4-139.504 20.272 100.944 98.384-23.84 138.928 124.768-65.6 124.768 65.6-23.84-138.928c0 0 100.944-98.384 100.944-98.384z%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E") center/cover no-repeat;
}

.c-rating[data-rating-value="1.75"] button:nth-child(2) {
  background: url("data:image/svg+xml;utf8,%3Csvg%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20width%3D%22512%22%20height%3D%22512%22%20viewBox%3D%220%200%20512%20512%22%3E%3Cpath%20fill%3D%22gold%22%20d%3D%22M321.616 190.496l-0.656-0.096-62.384-126.4-62.384 126.4-139.504 20.272 100.944 98.384-23.84 138.928 124.768-65.6 63.024 33.136z%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E") center/cover no-repeat, url("data:image/svg+xml;utf8,%3Csvg%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20width%3D%22512%22%20height%3D%22512%22%20viewBox%3D%220%200%20512%20512%22%3E%3Cpath%20fill%3D%22%23ddd%22%20d%3D%22M457.888 210.672l-139.504-20.272-62.384-126.4-62.384 126.4-139.504 20.272 100.944 98.384-23.84 138.928 124.768-65.6 124.768 65.6-23.84-138.928c0 0 100.944-98.384 100.944-98.384z%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E") center/cover no-repeat;
}

.c-rating[data-rating-value="2"] button:nth-child(-n+2) {
  background: url("data:image/svg+xml;utf8,%3Csvg%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20width%3D%22512%22%20height%3D%22512%22%20viewBox%3D%220%200%20512%20512%22%3E%3Cpath%20fill%3D%22gold%22%20d%3D%22M457.888 210.672l-139.504-20.272-62.384-126.4-62.384 126.4-139.504 20.272 100.944 98.384-23.84 138.928 124.768-65.6 124.768 65.6-23.84-138.928c0 0 100.944-98.384 100.944-98.384z%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E") center/cover no-repeat;
}

.c-rating[data-rating-value="2.25"] button:nth-child(-n+3) {
  background: url("data:image/svg+xml;utf8,%3Csvg%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20width%3D%22512%22%20height%3D%22512%22%20viewBox%3D%220%200%20512%20512%22%3E%3Cpath%20fill%3D%22gold%22%20d%3D%22M457.888 210.672l-139.504-20.272-62.384-126.4-62.384 126.4-139.504 20.272 100.944 98.384-23.84 138.928 124.768-65.6 124.768 65.6-23.84-138.928c0 0 100.944-98.384 100.944-98.384z%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E") center/cover no-repeat;
}

.c-rating[data-rating-value="2.25"] button:nth-child(3) {
  background: url("data:image/svg+xml;utf8,%3Csvg%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20width%3D%22512%22%20height%3D%22512%22%20viewBox%3D%220%200%20512%20512%22%3E%3Cpath%20fill%3D%22gold%22%20d%3D%22M196.208 415.2v-224.8l-139.504 20.272 100.944 98.384-23.84 138.928z%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E") center/cover no-repeat, url("data:image/svg+xml;utf8,%3Csvg%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20width%3D%22512%22%20height%3D%22512%22%20viewBox%3D%220%200%20512%20512%22%3E%3Cpath%20fill%3D%22%23ddd%22%20d%3D%22M457.888 210.672l-139.504-20.272-62.384-126.4-62.384 126.4-139.504 20.272 100.944 98.384-23.84 138.928 124.768-65.6 124.768 65.6-23.84-138.928c0 0 100.944-98.384 100.944-98.384z%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E") center/cover no-repeat;
}

.c-rating[data-rating-value="2.5"] button:nth-child(-n+3) {
  background: url("data:image/svg+xml;utf8,%3Csvg%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20width%3D%22512%22%20height%3D%22512%22%20viewBox%3D%220%200%20512%20512%22%3E%3Cpath%20fill%3D%22gold%22%20d%3D%22M457.888 210.672l-139.504-20.272-62.384-126.4-62.384 126.4-139.504 20.272 100.944 98.384-23.84 138.928 124.768-65.6 124.768 65.6-23.84-138.928c0 0 100.944-98.384 100.944-98.384z%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E") center/cover no-repeat;
}

.c-rating[data-rating-value="2.5"] button:nth-child(3) {
  background: url("data:image/svg+xml;utf8,%3Csvg%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20width%3D%22512%22%20height%3D%22512%22%20viewBox%3D%220%200%20512%20512%22%3E%3Cpath%20fill%3D%22gold%22%20d%3D%22M258.672 64l-62.384 126.4-139.504 20.272 100.944 98.384-23.84 138.928 124.768-65.6v-318.4z%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E") center/cover no-repeat, url("data:image/svg+xml;utf8,%3Csvg%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20width%3D%22512%22%20height%3D%22512%22%20viewBox%3D%220%200%20512%20512%22%3E%3Cpath%20fill%3D%22%23ddd%22%20d%3D%22M457.888 210.672l-139.504-20.272-62.384-126.4-62.384 126.4-139.504 20.272 100.944 98.384-23.84 138.928 124.768-65.6 124.768 65.6-23.84-138.928c0 0 100.944-98.384 100.944-98.384z%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E") center/cover no-repeat;
}

.c-rating[data-rating-value="2.75"] button:nth-child(-n+3) {
  background: url("data:image/svg+xml;utf8,%3Csvg%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20width%3D%22512%22%20height%3D%22512%22%20viewBox%3D%220%200%20512%20512%22%3E%3Cpath%20fill%3D%22gold%22%20d%3D%22M457.888 210.672l-139.504-20.272-62.384-126.4-62.384 126.4-139.504 20.272 100.944 98.384-23.84 138.928 124.768-65.6 124.768 65.6-23.84-138.928c0 0 100.944-98.384 100.944-98.384z%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E") center/cover no-repeat;
}

.c-rating[data-rating-value="2.75"] button:nth-child(3) {
  background: url("data:image/svg+xml;utf8,%3Csvg%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20width%3D%22512%22%20height%3D%22512%22%20viewBox%3D%220%200%20512%20512%22%3E%3Cpath%20fill%3D%22gold%22%20d%3D%22M321.616 190.496l-0.656-0.096-62.384-126.4-62.384 126.4-139.504 20.272 100.944 98.384-23.84 138.928 124.768-65.6 63.024 33.136z%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E") center/cover no-repeat, url("data:image/svg+xml;utf8,%3Csvg%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20width%3D%22512%22%20height%3D%22512%22%20viewBox%3D%220%200%20512%20512%22%3E%3Cpath%20fill%3D%22%23ddd%22%20d%3D%22M457.888 210.672l-139.504-20.272-62.384-126.4-62.384 126.4-139.504 20.272 100.944 98.384-23.84 138.928 124.768-65.6 124.768 65.6-23.84-138.928c0 0 100.944-98.384 100.944-98.384z%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E") center/cover no-repeat;
}

.c-rating[data-rating-value="3"] button:nth-child(-n+3) {
  background: url("data:image/svg+xml;utf8,%3Csvg%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20width%3D%22512%22%20height%3D%22512%22%20viewBox%3D%220%200%20512%20512%22%3E%3Cpath%20fill%3D%22gold%22%20d%3D%22M457.888 210.672l-139.504-20.272-62.384-126.4-62.384 126.4-139.504 20.272 100.944 98.384-23.84 138.928 124.768-65.6 124.768 65.6-23.84-138.928c0 0 100.944-98.384 100.944-98.384z%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E") center/cover no-repeat;
}

.c-rating[data-rating-value="3.25"] button:nth-child(-n+4) {
  background: url("data:image/svg+xml;utf8,%3Csvg%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20width%3D%22512%22%20height%3D%22512%22%20viewBox%3D%220%200%20512%20512%22%3E%3Cpath%20fill%3D%22gold%22%20d%3D%22M457.888 210.672l-139.504-20.272-62.384-126.4-62.384 126.4-139.504 20.272 100.944 98.384-23.84 138.928 124.768-65.6 124.768 65.6-23.84-138.928c0 0 100.944-98.384 100.944-98.384z%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E") center/cover no-repeat;
}

.c-rating[data-rating-value="3.25"] button:nth-child(4) {
  background: url("data:image/svg+xml;utf8,%3Csvg%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20width%3D%22512%22%20height%3D%22512%22%20viewBox%3D%220%200%20512%20512%22%3E%3Cpath%20fill%3D%22gold%22%20d%3D%22M196.208 415.2v-224.8l-139.504 20.272 100.944 98.384-23.84 138.928z%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E") center/cover no-repeat, url("data:image/svg+xml;utf8,%3Csvg%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20width%3D%22512%22%20height%3D%22512%22%20viewBox%3D%220%200%20512%20512%22%3E%3Cpath%20fill%3D%22%23ddd%22%20d%3D%22M457.888 210.672l-139.504-20.272-62.384-126.4-62.384 126.4-139.504 20.272 100.944 98.384-23.84 138.928 124.768-65.6 124.768 65.6-23.84-138.928c0 0 100.944-98.384 100.944-98.384z%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E") center/cover no-repeat;
}

.c-rating[data-rating-value="3.5"] button:nth-child(-n+4) {
  background: url("data:image/svg+xml;utf8,%3Csvg%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20width%3D%22512%22%20height%3D%22512%22%20viewBox%3D%220%200%20512%20512%22%3E%3Cpath%20fill%3D%22gold%22%20d%3D%22M457.888 210.672l-139.504-20.272-62.384-126.4-62.384 126.4-139.504 20.272 100.944 98.384-23.84 138.928 124.768-65.6 124.768 65.6-23.84-138.928c0 0 100.944-98.384 100.944-98.384z%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E") center/cover no-repeat;
}

.c-rating[data-rating-value="3.5"] button:nth-child(4) {
  background: url("data:image/svg+xml;utf8,%3Csvg%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20width%3D%22512%22%20height%3D%22512%22%20viewBox%3D%220%200%20512%20512%22%3E%3Cpath%20fill%3D%22gold%22%20d%3D%22M258.672 64l-62.384 126.4-139.504 20.272 100.944 98.384-23.84 138.928 124.768-65.6v-318.4z%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E") center/cover no-repeat, url("data:image/svg+xml;utf8,%3Csvg%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20width%3D%22512%22%20height%3D%22512%22%20viewBox%3D%220%200%20512%20512%22%3E%3Cpath%20fill%3D%22%23ddd%22%20d%3D%22M457.888 210.672l-139.504-20.272-62.384-126.4-62.384 126.4-139.504 20.272 100.944 98.384-23.84 138.928 124.768-65.6 124.768 65.6-23.84-138.928c0 0 100.944-98.384 100.944-98.384z%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E") center/cover no-repeat;
}

.c-rating[data-rating-value="3.75"] button:nth-child(-n+4) {
  background: url("data:image/svg+xml;utf8,%3Csvg%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20width%3D%22512%22%20height%3D%22512%22%20viewBox%3D%220%200%20512%20512%22%3E%3Cpath%20fill%3D%22gold%22%20d%3D%22M457.888 210.672l-139.504-20.272-62.384-126.4-62.384 126.4-139.504 20.272 100.944 98.384-23.84 138.928 124.768-65.6 124.768 65.6-23.84-138.928c0 0 100.944-98.384 100.944-98.384z%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E") center/cover no-repeat;
}

.c-rating[data-rating-value="3.75"] button:nth-child(4) {
  background: url("data:image/svg+xml;utf8,%3Csvg%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20width%3D%22512%22%20height%3D%22512%22%20viewBox%3D%220%200%20512%20512%22%3E%3Cpath%20fill%3D%22gold%22%20d%3D%22M321.616 190.496l-0.656-0.096-62.384-126.4-62.384 126.4-139.504 20.272 100.944 98.384-23.84 138.928 124.768-65.6 63.024 33.136z%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E") center/cover no-repeat, url("data:image/svg+xml;utf8,%3Csvg%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20width%3D%22512%22%20height%3D%22512%22%20viewBox%3D%220%200%20512%20512%22%3E%3Cpath%20fill%3D%22%23ddd%22%20d%3D%22M457.888 210.672l-139.504-20.272-62.384-126.4-62.384 126.4-139.504 20.272 100.944 98.384-23.84 138.928 124.768-65.6 124.768 65.6-23.84-138.928c0 0 100.944-98.384 100.944-98.384z%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E") center/cover no-repeat;
}

.c-rating[data-rating-value="4"] button:nth-child(-n+4) {
  background: url("data:image/svg+xml;utf8,%3Csvg%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20width%3D%22512%22%20height%3D%22512%22%20viewBox%3D%220%200%20512%20512%22%3E%3Cpath%20fill%3D%22gold%22%20d%3D%22M457.888 210.672l-139.504-20.272-62.384-126.4-62.384 126.4-139.504 20.272 100.944 98.384-23.84 138.928 124.768-65.6 124.768 65.6-23.84-138.928c0 0 100.944-98.384 100.944-98.384z%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E") center/cover no-repeat;
}

.c-rating[data-rating-value="4.25"] button:nth-child(-n+5) {
  background: url("data:image/svg+xml;utf8,%3Csvg%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20width%3D%22512%22%20height%3D%22512%22%20viewBox%3D%220%200%20512%20512%22%3E%3Cpath%20fill%3D%22gold%22%20d%3D%22M457.888 210.672l-139.504-20.272-62.384-126.4-62.384 126.4-139.504 20.272 100.944 98.384-23.84 138.928 124.768-65.6 124.768 65.6-23.84-138.928c0 0 100.944-98.384 100.944-98.384z%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E") center/cover no-repeat;
}

.c-rating[data-rating-value="4.25"] button:nth-child(5) {
  background: url("data:image/svg+xml;utf8,%3Csvg%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20width%3D%22512%22%20height%3D%22512%22%20viewBox%3D%220%200%20512%20512%22%3E%3Cpath%20fill%3D%22gold%22%20d%3D%22M196.208 415.2v-224.8l-139.504 20.272 100.944 98.384-23.84 138.928z%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E") center/cover no-repeat, url("data:image/svg+xml;utf8,%3Csvg%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20width%3D%22512%22%20height%3D%22512%22%20viewBox%3D%220%200%20512%20512%22%3E%3Cpath%20fill%3D%22%23ddd%22%20d%3D%22M457.888 210.672l-139.504-20.272-62.384-126.4-62.384 126.4-139.504 20.272 100.944 98.384-23.84 138.928 124.768-65.6 124.768 65.6-23.84-138.928c0 0 100.944-98.384 100.944-98.384z%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E") center/cover no-repeat;
}

.c-rating[data-rating-value="4.5"] button:nth-child(-n+5) {
  background: url("data:image/svg+xml;utf8,%3Csvg%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20width%3D%22512%22%20height%3D%22512%22%20viewBox%3D%220%200%20512%20512%22%3E%3Cpath%20fill%3D%22gold%22%20d%3D%22M457.888 210.672l-139.504-20.272-62.384-126.4-62.384 126.4-139.504 20.272 100.944 98.384-23.84 138.928 124.768-65.6 124.768 65.6-23.84-138.928c0 0 100.944-98.384 100.944-98.384z%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E") center/cover no-repeat;
}

.c-rating[data-rating-value="4.5"] button:nth-child(5) {
  background: url("data:image/svg+xml;utf8,%3Csvg%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20width%3D%22512%22%20height%3D%22512%22%20viewBox%3D%220%200%20512%20512%22%3E%3Cpath%20fill%3D%22gold%22%20d%3D%22M258.672 64l-62.384 126.4-139.504 20.272 100.944 98.384-23.84 138.928 124.768-65.6v-318.4z%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E") center/cover no-repeat, url("data:image/svg+xml;utf8,%3Csvg%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20width%3D%22512%22%20height%3D%22512%22%20viewBox%3D%220%200%20512%20512%22%3E%3Cpath%20fill%3D%22%23ddd%22%20d%3D%22M457.888 210.672l-139.504-20.272-62.384-126.4-62.384 126.4-139.504 20.272 100.944 98.384-23.84 138.928 124.768-65.6 124.768 65.6-23.84-138.928c0 0 100.944-98.384 100.944-98.384z%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E") center/cover no-repeat;
}

.c-rating[data-rating-value="4.75"] button:nth-child(-n+5) {
  background: url("data:image/svg+xml;utf8,%3Csvg%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20width%3D%22512%22%20height%3D%22512%22%20viewBox%3D%220%200%20512%20512%22%3E%3Cpath%20fill%3D%22gold%22%20d%3D%22M457.888 210.672l-139.504-20.272-62.384-126.4-62.384 126.4-139.504 20.272 100.944 98.384-23.84 138.928 124.768-65.6 124.768 65.6-23.84-138.928c0 0 100.944-98.384 100.944-98.384z%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E") center/cover no-repeat;
}

.c-rating[data-rating-value="4.75"] button:nth-child(5) {
  background: url("data:image/svg+xml;utf8,%3Csvg%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20width%3D%22512%22%20height%3D%22512%22%20viewBox%3D%220%200%20512%20512%22%3E%3Cpath%20fill%3D%22gold%22%20d%3D%22M321.616 190.496l-0.656-0.096-62.384-126.4-62.384 126.4-139.504 20.272 100.944 98.384-23.84 138.928 124.768-65.6 63.024 33.136z%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E") center/cover no-repeat, url("data:image/svg+xml;utf8,%3Csvg%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20width%3D%22512%22%20height%3D%22512%22%20viewBox%3D%220%200%20512%20512%22%3E%3Cpath%20fill%3D%22%23ddd%22%20d%3D%22M457.888 210.672l-139.504-20.272-62.384-126.4-62.384 126.4-139.504 20.272 100.944 98.384-23.84 138.928 124.768-65.6 124.768 65.6-23.84-138.928c0 0 100.944-98.384 100.944-98.384z%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E") center/cover no-repeat;
}

.c-rating[data-rating-value="5"] button:nth-child(-n+5) {
  background: url("data:image/svg+xml;utf8,%3Csvg%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20width%3D%22512%22%20height%3D%22512%22%20viewBox%3D%220%200%20512%20512%22%3E%3Cpath%20fill%3D%22gold%22%20d%3D%22M457.888 210.672l-139.504-20.272-62.384-126.4-62.384 126.4-139.504 20.272 100.944 98.384-23.84 138.928 124.768-65.6 124.768 65.6-23.84-138.928c0 0 100.944-98.384 100.944-98.384z%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E") center/cover no-repeat;
}

.c-rating--small {
  font-size: 50%;
}

.c-rating--big {
  font-size: 150%;
}

/* --- Dark Mode Styles --- */
/* Now primarily driven by variables in _themes.scss */
html.dark-mode,
html.dark-mode body,
.dark-mode,
.dark-mode body {
  background-color: var(--bg-color);
  color: var(--text-color);
}

.dark-mode a {
  color: var(--link-color);
}

.dark-mode a:hover {
  color: var(--link-hover-color);
}

/* Headings & Text */
.dark-mode h1, .dark-mode h2, .dark-mode h3, .dark-mode h4, .dark-mode h5, .dark-mode h6, .dark-mode p {
  color: var(--text-color);
}

.dark-mode .mainheading h1, .dark-mode .mainheading .lead, .dark-mode .intro-section .powerful-intro-text, .dark-mode .section-title h2 span {
  color: var(--heading-color);
}

.dark-mode .section-title h2 {
  border-bottom-color: var(--card-border);
}

.dark-mode .section-title h2 span, .dark-mode .section-title span {
  border-bottom-color: var(--text-muted);
}

.dark-mode .article-post, .dark-mode .article-post p, .dark-mode .article-post h1, .dark-mode .article-post h2, .dark-mode .article-post h3, .dark-mode .article-post h4, .dark-mode .article-post h5, .dark-mode .article-post h6, .dark-mode .article-post blockquote, .dark-mode .article-post div {
  color: var(--post-text-color) !important;
}

.dark-mode blockquote {
  background-color: var(--blockquote-bg);
  border-left-color: var(--blockquote-border);
  color: var(--text-muted);
}

.dark-mode code, .dark-mode pre {
  background-color: var(--code-bg);
  color: var(--code-text);
  border-color: var(--border-color);
}

.dark-mode pre code {
  background-color: transparent;
}

.dark-mode table, .dark-mode table th, .dark-mode table td {
  color: var(--text-color);
  border-color: var(--border-color);
}

.dark-mode ul.tags li a {
  background: var(--code-bg);
  color: var(--text-color);
}

.dark-mode ul.tags li a:hover {
  background: var(--border-color);
  color: #fff;
}

.dark-mode .post-top-meta .author-description {
  color: var(--text-muted);
}

.dark-mode .link-dark {
  color: var(--link-color) !important;
}

.dark-mode .post-date, .dark-mode span.post-read, .dark-mode .author-meta, .dark-mode .text-muted {
  color: var(--text-muted) !important;
}

/* Navbar */
.dark-mode .navbar {
  background-color: var(--navbar-bg) !important;
  border-bottom: 1px solid var(--border-color);
}

.dark-mode .navbar-collapse {
  background-color: var(--navbar-bg) !important;
}

.dark-mode .navbar-toggler-icon {
  background-color: var(--text-color);
}

.dark-mode .navbar-toggler[aria-expanded=true] .navbar-toggler-icon {
  background-color: transparent !important;
}

.dark-mode .navbar-toggler-icon::before,
.dark-mode .navbar-toggler-icon::after {
  background-color: var(--text-color);
}

.dark-mode .navbar-brand {
  color: var(--heading-color);
}

.dark-mode .navbar-brand img, .dark-mode .hero-header .hero-logo, .dark-mode .footer-logo {
  filter: invert(1);
}

.dark-mode .nav-link {
  color: var(--navbar-link) !important;
}

.dark-mode .nav-link:hover {
  color: var(--link-color) !important;
}

/* Dropdown Menu Dark Mode */
.dark-mode .dropdown-menu {
  background-color: var(--navbar-bg) !important;
  border: 1px solid var(--border-color) !important;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.45) !important;
}

.dark-mode .dropdown-item {
  color: var(--navbar-link) !important;
  background-color: transparent !important;
}

.dark-mode .dropdown-item:hover, .dark-mode .dropdown-item:focus {
  background-color: var(--highlight-color) !important;
  color: var(--link-color) !important;
}

.dark-mode .dropdown-divider {
  border-top-color: var(--border-color) !important;
  opacity: 0.3;
}

/* Search Bar & Modal */
.dark-mode .bd-search .form-control {
  background-color: var(--navbar-bg) !important;
  color: var(--text-color) !important;
  border-color: var(--border-color) !important;
}

.dark-mode .bd-search .form-control:focus {
  background-color: var(--blockquote-bg) !important;
  color: #fff !important;
  border-color: var(--text-muted) !important;
}

/* Placeholder color overrides */
.dark-mode .bd-search .form-control::-webkit-input-placeholder {
  color: var(--text-muted) !important;
}

.dark-mode .bd-search .form-control:-moz-placeholder {
  color: var(--text-muted) !important;
}

.dark-mode .bd-search .form-control::-moz-placeholder {
  color: var(--text-muted) !important;
}

.dark-mode .bd-search .form-control:-ms-input-placeholder {
  color: var(--text-muted) !important;
}

.dark-mode .bd-search .form-control::placeholder {
  color: var(--text-muted) !important;
}

.dark-mode #lunrsearchresults .modal-content {
  background-color: var(--navbar-bg);
  border-color: var(--border-color);
}

.dark-mode #lunrsearchresults .modal-header,
.dark-mode #lunrsearchresults .modal-footer {
  border-color: var(--border-color);
}

.dark-mode .lunrsearchresult {
  color: var(--text-color);
}

.dark-mode .lunrsearchresult a {
  color: var(--text-muted) !important;
}

.dark-mode .lunrsearchresult a:hover {
  color: var(--link-color) !important;
}

.dark-mode .lunrsearchresult .title {
  color: #e57373 !important;
}

.dark-mode .lunrsearchresult .url {
  color: #757575 !important;
}

.dark-mode #lunrsearchresults .close {
  color: var(--text-color);
  text-shadow: none;
}

.dark-mode #lunrsearchresults .close:hover {
  color: #fff;
}

/* Dark Mode Toggle - Circled */
.dark-mode .dark-mode-toggle {
  border-color: var(--border-color);
  color: var(--link-color) !important;
}

.dark-mode .dark-mode-toggle:hover {
  background-color: var(--blockquote-bg);
  border-color: var(--text-muted);
}

/* About Us Page Dark Mode */
.dark-mode .editors-note-content blockquote {
  background-color: var(--navbar-bg);
  color: var(--text-muted);
  border-left-color: var(--link-color);
}

.dark-mode .editor-inner-rectangle, .dark-mode .team-member-inner-rectangle {
  background-color: var(--navbar-bg);
  border-color: var(--border-color);
}

.dark-mode .editor-name, .dark-mode .team-member-name {
  color: var(--text-color);
}

.dark-mode .editor-name a {
  color: var(--link-color) !important;
}

.dark-mode .edition-container .edition-card {
  background-color: var(--navbar-bg);
  border-color: var(--border-color);
}

.dark-mode .edition-container .edition-card p {
  color: var(--text-muted);
}

.dark-mode .developed-by hr {
  border-top-color: var(--border-color);
}

.dark-mode .editors-note-content p {
  background-color: var(--navbar-bg);
  color: var(--text-color);
}

/* Hero Headers are handled in main.scss with var(--header-overlay) */
/* Pictures Page Dark Mode */
.dark-mode .picture-inner-rectangle {
  background-color: var(--navbar-bg);
  border-color: var(--border-color);
}

.dark-mode .pictures-name {
  color: var(--text-color);
}

.dark-mode .pictures-author {
  color: var(--text-muted);
}

.dark-mode .pictures-desc {
  color: var(--text-muted);
}

/* Cards */
.dark-mode .card {
  background-color: var(--card-bg);
  box-shadow: var(--card-shadow);
  border: 1px solid var(--card-border);
}

.dark-mode .card:hover {
  box-shadow: var(--card-shadow-hover);
}

.dark-mode .card .card-body a, .dark-mode .card .card-body h2.card-title a, .dark-mode .card .card-body a.text-dark {
  color: var(--heading-color) !important;
}

.dark-mode .card .card-body a:hover {
  color: var(--link-color) !important;
}

.dark-mode .card .card-body h4.card-text {
  color: var(--text-muted);
}

.dark-mode .card .card-footer, .dark-mode .card .card-footer.bg-white {
  background-color: var(--card-footer-bg) !important;
  border-top: 1px solid var(--card-border);
  color: var(--text-color);
}

.dark-mode .card .post-date, .dark-mode .card .wrapfooter .post-name, .dark-mode .card .wrapfooter .post-date {
  color: var(--text-muted);
}

/* Share Sidebar */
.dark-mode .share {
  background: transparent;
  border: none;
  padding: 0;
}

.dark-mode .share p {
  color: var(--text-color);
}

.dark-mode .share ul li i {
  color: var(--text-color);
  border-color: var(--border-color);
  background: transparent;
}

.dark-mode .share ul li a:hover i {
  color: #fff;
  border-color: var(--link-color);
  background: rgba(144, 202, 249, 0.1);
}

/* Literary Improvements - Dark Mode */
.dark-mode .reading-progress-bar {
  background: var(--link-color);
}

.dark-mode .article-post p:first-of-type::first-letter,
.dark-mode .article-post .dropcap::first-letter {
  color: #ffffff !important;
}

.dark-mode .article-post blockquote {
  background-color: var(--blockquote-bg);
  border-left-color: var(--link-color);
  color: var(--post-text-color) !important;
}

/* Footer */
.dark-mode .footer {
  background-color: var(--navbar-bg);
  color: var(--text-color);
  border-top: 1px solid var(--border-color);
}

.dark-mode .footer a {
  color: var(--link-color);
}

.dark-mode .footer a:hover {
  color: var(--link-hover-color);
}

/* --- Crossword Page & Widget Styles --- */
.dark-mode .check-answer-btn {
  background: var(--text-color);
  color: var(--bg-color) !important;
}

.dark-mode .check-answer-btn:hover {
  background: var(--text-muted);
  color: var(--bg-color) !important;
  box-shadow: var(--card-shadow-hover);
}

/* Gallery Loading Skeleton Dark Mode */
.dark-mode .skeleton-card {
  background: linear-gradient(90deg, var(--blockquote-bg) 25%, var(--border-color) 50%, var(--blockquote-bg) 75%);
  background-size: 200% 100%;
}

/* Scrollbar Dark Mode - Simple & Global */
.dark-mode {
  scrollbar-color: var(--text-muted) var(--bg-color);
  scrollbar-width: thin;
}

/* Webkit Scrollbars in Dark Mode */
.dark-mode ::-webkit-scrollbar {
  width: 4px;
  height: 4px;
}

.dark-mode ::-webkit-scrollbar-track {
  background: var(--bg-color) !important;
}

.dark-mode ::-webkit-scrollbar-thumb {
  background: var(--text-muted) !important;
  border-radius: 10px !important;
}

/* --- Hero Header --- */
@keyframes fastFadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeInSlideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.hero-header {
  /* --- Full-width breakout --- */
  width: 100vw;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  /* --- Styling & Centering --- */
  background-image: linear-gradient(var(--header-overlay), var(--header-overlay)), url("../images/header_bg.webp");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  min-height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  box-sizing: border-box;
}

.hero-header .hero-logo {
  filter: invert(1);
  max-width: 500px;
  width: 80%;
  opacity: 0;
  animation: fastFadeIn 0.8s ease-out 0.2s forwards;
}

.section-title h2 {
  border-bottom: 1px solid var(--card-border);
  margin-bottom: 3rem;
  font-weight: 700;
  font-size: 2.2rem;
  font-family: "Playfair Display", serif;
}

.section-title h2 span {
  border-bottom: 1px solid var(--text-color);
  display: inline-block;
  padding-bottom: 10px;
  margin-bottom: -1px;
  color: var(--heading-color);
}

.intro-section {
  padding: 2rem 2rem 4rem 2rem; /* Consistent padding */
  text-align: center;
}

.intro-section .powerful-intro-text {
  font-size: 2.2rem;
  font-weight: 600;
  color: var(--text-color);
  line-height: 1.4;
  max-width: 1100px; /* Increased width */
  margin: 0 auto;
  opacity: 0; /* Start hidden for animation */
  animation: fadeInSlideUp 1s ease-out 0.5s forwards; /* Animate this text */
}

/* --- Card Widget Improvements (General) --- */
.card {
  transition: transform 0.2s cubic-bezier(0.2, 0, 0.4, 1), box-shadow 0.2s cubic-bezier(0.2, 0, 0.4, 1);
  background-color: var(--card-bg);
  box-shadow: var(--card-shadow);
  border-radius: 8px;
  border: 1px solid var(--card-border);
  overflow: hidden; /* Ensure aspect ratio clipping */
  contain: paint; /* Performance: helps browser isolate rendering */
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: var(--card-shadow-brutal) !important;
}

/* Aspect Ratio Reservation to prevent Layout Shift */
.maxthumb {
  width: 100%;
  aspect-ratio: 16/9; /* Standard post image ratio */
  background-color: var(--card-footer-bg); /* Placeholder color */
  overflow: hidden;
  contain: strict;
}

.wrapthumbnail {
  width: 100%;
  aspect-ratio: 4/5; /* Featured box image ratio (vertical focus) */
  background-color: var(--card-footer-bg);
  overflow: hidden;
  contain: strict;
}

@media (max-width: 991px) {
  .wrapthumbnail {
    aspect-ratio: 16/9; /* Switch to horizontal on mobile for featured */
  }
}
.card .card-body h2.card-title a {
  font-size: 1.3rem;
  line-height: 1.4;
  color: var(--heading-color);
}

.card .card-body h4.card-text {
  font-size: 0.95rem;
  color: var(--text-muted);
}

.card .maxthumb img {
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
}

.card .card-footer {
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
  background-color: var(--card-footer-bg);
  border-top: 1px solid var(--card-border);
}

/* --- Edition Card Improvements (Revised) --- */
.edition-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  max-width: 1100px;
  margin: 0 auto;
  justify-content: center;
  gap: 30px;
  padding: 40px 0;
}

@media (min-width: 1200px) {
  .edition-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 992px) {
  .edition-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
  }
}
.edition-card {
  position: relative;
  background: var(--card-bg);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 2px solid var(--edition-card-border);
  border-radius: 20px;
  padding: 30px;
  text-align: center;
  transition: all 0.3s ease-in-out;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  min-height: 350px;
  color: var(--text-color);
}

/* Light mode defaults for variables used in hover */
:root {
  --edition-card-border: #000000;
  --edition-card-hover-shadow: #000000;
  --edition-card-hover-border: #000000;
}

.dark-mode {
  --edition-card-border: #ffffff;
  --edition-card-hover-shadow: #ffffff;
  --edition-card-hover-border: #ffffff;
}

.card-theme-1, .card-theme-2, .card-theme-3, .card-theme-4 {
  --accent-color: #ffffff;
}

.edition-card:hover {
  transform: translate(-4px, -4px);
  box-shadow: 8px 8px 0px var(--edition-card-hover-shadow);
  border-color: var(--edition-card-hover-border);
}

.edition-card a {
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.edition-icon {
  width: 60px;
  height: 60px;
  background: var(--card-footer-bg);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.5rem;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
  color: var(--text-color);
}

.edition-thumbnail {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: contain;
  border-radius: 12px;
  margin-bottom: 20px;
  border: 1px solid var(--border-color);
  background-color: rgba(0, 0, 0, 0.02);
}

.edition-card:hover .edition-icon {
  transform: rotate(10deg);
}

.edition-title {
  font-family: "Playfair Display", serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 10px;
  display: block;
}

.edition-description {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 25px;
  display: block;
  line-height: 1.5;
}

.edition-action {
  margin-top: auto;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text-color);
  text-transform: uppercase;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.3s ease;
}

.edition-card:hover .edition-action {
  gap: 12px;
}

/* --- Section Hero Headers --- */
.section-hero-header {
  background-image: linear-gradient(var(--header-overlay), var(--header-overlay)), url("/assets/images/Pictures/Flowers2-Krishna_Bhikadiya.jpg");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  min-height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem 2rem;
  box-sizing: border-box;
  margin-bottom: 3rem;
  border-radius: 10px;
  box-shadow: var(--card-shadow);
  overflow: hidden;
}

.section-hero-header h2, .section-hero-header h1, .section-hero-header h2 span, .section-hero-header h1 span {
  font-family: "Playfair Display", serif;
  color: #ffffff !important;
  font-size: 3.5rem;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
  text-align: center;
  line-height: 1.2;
  margin: 0;
  border-bottom: none !important;
}

/* --- Club logo --- */
.club-logo-wrap {
  text-align: center;
  margin: 0 auto 1.75rem;
}

.club-logo {
  max-height: 150px;
  max-width: 300px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 6px 18px rgba(0, 0, 0, 0.18));
  transition: transform 0.3s ease;
}

.club-logo:hover {
  transform: scale(1.04);
}

.club-logo.is-circle {
  max-height: 160px;
  max-width: 160px;
  aspect-ratio: 1/1;
  border-radius: 50%;
  object-fit: cover;
}

/* --- Club write-up / about the club --- */
.club-writeup {
  max-width: 760px;
  margin: 3.25rem auto 1rem;
  padding: 0 1.5rem;
  font-family: "Inter", sans-serif;
  color: var(--text-color);
  line-height: 1.85;
  font-size: 1.08rem;
}

.club-writeup .club-writeup-heading {
  font-family: "Playfair Display", serif;
  font-weight: 800;
  text-align: center;
  font-size: 2rem;
  margin: 0 0 0.5rem;
  color: var(--heading-color);
}

.club-writeup .club-writeup-rule {
  width: 60px;
  height: 4px;
  border-radius: 2px;
  background: var(--club-accent, var(--link-color));
  margin: 0 auto 2rem;
  opacity: 0.85;
}

.club-writeup p {
  margin: 0 0 1.35rem;
}

.club-writeup p:first-of-type::first-letter {
  font-family: "Playfair Display", serif;
  font-size: 3.4rem;
  font-weight: 800;
  float: left;
  line-height: 0.75;
  padding: 0.08em 0.12em 0 0;
  color: var(--club-accent, var(--heading-color));
}

.club-writeup .club-signoff {
  font-family: "Playfair Display", serif;
  font-style: italic;
  color: var(--text-muted);
  text-align: right;
  line-height: 1.5;
  margin-top: 1.75rem;
}

@media (max-width: 767px) {
  .club-writeup {
    font-size: 1rem;
    margin-top: 2.5rem;
  }
  .club-writeup .club-writeup-heading {
    font-size: 1.6rem;
  }
  .club-writeup p:first-of-type::first-letter {
    font-size: 2.9rem;
  }
}
/* Navbar Search & Toggle Alignment */
.navbar-nav {
  display: flex;
  align-items: center;
}

/* Beautiful Dropdown Enhancements */
.dropdown-menu {
  border: none;
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
  padding: 0.6rem;
  margin-top: 10px !important;
  background-color: var(--navbar-bg);
  opacity: 0;
  visibility: hidden;
  display: block; /* Overriding bootstrap display:none to allow transition */
  transform: translateY(10px);
  transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
  pointer-events: none;
}

/* Bridge the gap to prevent disappearing on hover */
.dropdown-menu::before {
  content: "";
  position: absolute;
  top: -15px;
  left: 0;
  width: 100%;
  height: 15px;
}

.dropdown:hover > .dropdown-menu,
.dropdown-menu.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

/* Nested Submenu Styles */
.dropdown-submenu {
  position: relative;
}

.dropdown-submenu > .dropdown-menu {
  top: 0;
  left: 100%;
  margin-top: -6px !important;
  margin-left: 5px;
}

.dropdown-submenu:hover > .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
  pointer-events: auto;
}

/* ---- The menu on a touch screen ----
   Everything above opens on :hover, which no phone has. Inside the collapsed
   navbar the Clubs list would therefore be unreachable, and the flyout would be
   positioned off the right edge anyway. Below lg it becomes a plain indented
   list that is simply there once the UG@IISc menu is open. */
@media (max-width: 991px) {
  .dropdown-submenu > .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: none;
    float: none;
    width: auto;
    margin: 0.2rem 0 0.4rem 0.85rem !important;
    padding: 0;
    border-radius: 0;
    border-left: 2px solid var(--border-color);
    box-shadow: none;
  }
  /* the flyout caret means nothing once the list is inline */
  .dropdown-item.dropdown-toggle-side::after {
    content: none;
  }
  /* the whole panel can get tall with the clubs expanded */
  .navbar-collapse {
    max-height: calc(100vh - 76px);
    overflow-y: auto;
    padding: 0.5rem 1rem 1rem;
  }
  .navbar-toggler {
    /* a thumb-sized target, not a 30px line */
    min-width: 44px;
    min-height: 44px;
  }
  /* screen.css assumes a 57px bar; a 44px tap target makes it taller than
     that, and the first line of every page ends up under it. */
  .site-content {
    margin-top: 68px;
  }
}
.dropdown-item.dropdown-toggle-side {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.dropdown-item.dropdown-toggle-side::after {
  content: "\f0da"; /* Font Awesome right arrow */
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  border: none;
  font-size: 0.8rem;
  transition: transform 0.3s ease;
}

.dropdown-submenu:hover .dropdown-toggle-side::after {
  transform: translateX(3px);
}

.dropdown-item {
  padding: 0.6rem 1.2rem;
  font-weight: 500;
  color: var(--text-color);
  transition: all 0.2s ease;
  border-radius: 10px;
  margin-bottom: 2px;
  font-family: "Inter", sans-serif !important;
}

.dropdown-item:last-child {
  margin-bottom: 0;
}

.dropdown-item:hover {
  background-color: var(--highlight-color);
  color: var(--link-color);
}

.dropdown-divider {
  border-top: 1px solid var(--border-color);
  margin: 0.4rem 0.8rem;
  opacity: 0.4;
}

/* Remove box/outline from navigation links */
.navbar-nav .nav-link,
.navbar-nav .nav-link:focus,
.navbar-nav .nav-link:active,
.navbar-nav .dropdown-toggle:focus {
  outline: none !important;
  box-shadow: none !important;
  background-color: transparent !important;
}

.bd-search {
  margin-bottom: 0;
}

.dark-mode-toggle {
  display: flex !important;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 35px;
  border: 1px solid var(--border-color);
  border-radius: 50%;
  padding: 0 !important;
  margin-left: 10px;
  transition: all 0.2s ease;
  color: var(--text-color);
}

.dark-mode-toggle:hover {
  background-color: var(--blockquote-bg);
  border-color: var(--text-muted);
}

.dark-mode-toggle i {
  font-size: 0.9rem;
}

.magazine-link {
  font-size: 1.5rem; /* Slightly larger */
  font-weight: 600; /* Match powerful-intro-text weight */
  color: var(--text-color);
  text-decoration: none;
  position: relative;
  display: inline-flex;
  align-items: center;
  padding-bottom: 5px;
  letter-spacing: 0.5px;
  transition: all 0.3s cubic-bezier(0.2, 0, 0, 1);
}

/* --- Typography Pairing --- */
body {
  font-family: "Inter", "Helvetica Neue", Helvetica, Arial, sans-serif;
  background-color: var(--bg-color);
  color: var(--text-color);
}

/* Keep the doodle pattern below these content areas */
.announcements-scroll-container {
  background: var(--bg-color);
  border-radius: 12px;
}

h1, h2, h3, h4, h5, h6, .navbar-brand {
  font-family: "Playfair Display", serif !important;
  color: var(--heading-color);
}

/* --- Micro-Interactions: Independent Image Fade-in --- */
.featured-image {
  opacity: 0;
  transition: opacity 0.6s ease-in-out;
  background-color: var(--blockquote-bg); /* Placeholder color */
}

.featured-image.loaded {
  opacity: 1;
}

/* --- Micro-Interactions: Scroll Fade-Up --- */
.fade-up-element {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s cubic-bezier(0.2, 0, 0.4, 1), transform 0.6s cubic-bezier(0.2, 0, 0.4, 1);
  will-change: opacity, transform;
}

.fade-up-element.visible {
  opacity: 1;
  transform: translateY(0);
}

/* --- Masonry Grid for Gallery --- */
.masonry-grid {
  column-count: 3;
  column-gap: 30px;
}

@media (max-width: 991px) {
  .masonry-grid {
    column-count: 2;
  }
}
@media (max-width: 767px) {
  .masonry-grid {
    column-count: 1;
  }
}
.masonry-item {
  break-inside: avoid;
  page-break-inside: avoid;
  display: inline-block;
  margin-bottom: 30px;
  width: 100%;
}

/* Gallery Loading Skeleton */
.gallery-loading-skeleton {
  padding: 2rem 0;
}

.skeleton-card {
  width: 100%;
  height: 350px;
  background: linear-gradient(90deg, var(--blockquote-bg) 25%, var(--border-color) 50%, var(--blockquote-bg) 75%);
  background-size: 200% 100%;
  animation: loading 1.5s infinite;
  border-radius: 8px;
}

@keyframes loading {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: -200% 0;
  }
}
.magazine-link .arrow {
  display: inline-block;
  margin-left: 12px;
  font-size: 1.8rem;
  line-height: 1;
  transition: transform 0.4s cubic-bezier(0.2, 0, 0, 1);
}

.magazine-link:hover {
  color: var(--text-color);
  transform: scale(1.02);
  text-decoration: none;
}

.magazine-link:hover .arrow {
  transform: translateX(12px);
}

.magazine-link::after {
  content: "";
  position: absolute;
  width: 0;
  height: 1.5px;
  bottom: 0;
  left: 0;
  background-color: currentColor;
  transition: width 0.4s cubic-bezier(0.2, 0, 0, 1);
}

.magazine-link:hover::after {
  width: 100%;
}

/* --- Team Card Hover Effects --- */
.team-card {
  cursor: pointer;
  background-color: var(--card-bg);
}

.team-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--card-shadow-hover) !important;
}

.team-card img {
  transition: transform 0.5s cubic-bezier(0.2, 0, 0, 1);
}

.team-card:hover img {
  transform: scale(1.1);
}

/* --- Picture Card Hover Effects --- */
.picture-card {
  transition: all 0.3s ease;
  will-change: transform, box-shadow;
  background-color: var(--card-bg);
}

.picture-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--card-shadow-hover) !important;
}

.picture-card img {
  transition: transform 0.5s cubic-bezier(0.2, 0, 0, 1);
  will-change: transform;
}

.picture-card:hover img {
  transform: scale(1.1);
}

.picture-overlay {
  /* Fixed the gap on hover by adding a shadow extension below the overlay */
  /* This shadow moves with the overlay, keeping the bottom edge covered */
  box-shadow: 0 40px 0 0 rgba(0, 0, 0, 0.9);
}

.picture-card:hover .picture-overlay {
  transform: translateY(-5px) translateZ(0) !important;
}

/* --- Responsive Adjustments --- */
@media (max-width: 768px) {
  .section-hero-header {
    background-attachment: scroll; /* Fixed is buggy on mobile */
    min-height: 120px;
    padding: 1rem;
  }
  .section-hero-header h2, .section-hero-header h1, .section-hero-header h2 span, .section-hero-header h1 span {
    font-size: 2.2rem;
  }
  .intro-section .powerful-intro-text {
    font-size: 1.6rem;
  }
  .carousel-arrow.left {
    left: 5px;
  }
  .carousel-arrow.right {
    right: 5px;
  }
  .hero-header {
    min-height: 40vh;
    background-attachment: scroll;
  }
}
/* --- Side-Scroll List Widget (Common for Announcements, News, etc.) --- */
.side-scroll-list-widget {
  background: var(--blockquote-bg);
  border-radius: 15px;
  padding: 25px;
  height: 450px;
  display: flex;
  flex-direction: column;
}

.side-scroll-list-container {
  margin-top: 15px;
  padding-right: 10px;
  overflow-y: auto;
  flex-grow: 1;
}

/* --- Reusable Carousel Widget Style --- */
.carousel-container {
  position: relative;
  padding: 0 40px;
}

.latest-carousel {
  display: flex;
  overflow-x: auto;
  gap: 20px;
  padding-bottom: 20px;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.latest-carousel::-webkit-scrollbar {
  display: none;
}

.carousel-track {
  display: flex;
  gap: 20px;
}

.carousel-item-custom {
  flex: 0 0 300px;
  width: 300px;
  max-width: 300px;
  display: flex;
  flex-direction: column;
}

.carousel-item-custom .card {
  height: 560px !important; /* Substantially larger fixed height */
  display: flex;
  flex-direction: column;
  border: 1px solid var(--card-border);
  box-shadow: var(--card-shadow);
}

.carousel-item-custom .maxthumb {
  height: 340px; /* Much larger image area */
  overflow: hidden;
  flex-shrink: 0;
}

.carousel-item-custom .maxthumb img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.carousel-item-custom .card-body {
  flex-grow: 1;
  padding: 1.25rem !important;
  overflow: hidden;
}

.carousel-item-custom h2.card-title {
  font-size: 1.2rem !important;
  line-height: 1.4 !important;
  margin-bottom: 0.75rem !important;
  max-height: 3.4rem;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.carousel-item-custom h4.card-text {
  font-size: 0.9rem !important;
  line-height: 1.5 !important;
  color: var(--text-muted);
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 4; /* More room for text */
  -webkit-box-orient: vertical;
}

.carousel-item-custom .card-footer {
  padding: 1rem 1.25rem;
  background: transparent !important;
  border-top: 1px solid var(--card-border) !important;
  flex-shrink: 0;
}

/* Carousel Arrow Styles */
.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  box-shadow: var(--card-shadow);
  color: var(--text-color);
  transition: all 0.3s ease;
  outline: none;
}

.carousel-arrow:hover {
  background: var(--text-color);
  color: var(--card-bg);
  box-shadow: var(--card-shadow-hover);
}

.carousel-arrow.left {
  left: 0;
}

.carousel-arrow.right {
  right: 0;
}

/* --- Crossword Page & Widget Styles --- */
.check-answer-btn {
  background: var(--text-color);
  color: var(--bg-color);
  border: none;
  padding: 8px 24px;
  border-radius: 50px;
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  transition: all 0.3s cubic-bezier(0.2, 0, 0, 1);
  box-shadow: var(--card-shadow);
  cursor: pointer;
  outline: none;
}

.check-answer-btn:hover {
  background: var(--text-muted);
  transform: translateY(-2px);
  box-shadow: var(--card-shadow-hover);
  color: var(--bg-color);
  text-decoration: none;
}

.check-answer-btn:active {
  transform: translateY(0);
}

:root {
  --cell-size: clamp(40px, 9vw, 65px);
}

.clue-header {
  color: #fff !important;
}

/* Improved Grid for Mobile (No sub-pixel gaps) */
.crossword-grid {
  display: grid;
  border-top: 1px solid var(--border-color);
  border-left: 1px solid var(--border-color);
  background: transparent;
  width: fit-content;
  margin: 0 auto;
}

.crossword-cell {
  width: var(--cell-size);
  height: var(--cell-size);
  background: transparent;
  border-right: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  box-sizing: border-box;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.crossword-cell.block {
  background: var(--block-color) !important;
  border: 1px solid var(--block-color) !important;
}

.crossword-cell input {
  width: 100%;
  height: 100%;
  border: none;
  background: transparent;
  text-align: center;
  font-size: 1.5rem;
  font-weight: 700;
  text-transform: uppercase;
  color: inherit;
  outline: none;
  cursor: pointer;
}

.crossword-cell .cell-number {
  position: absolute;
  top: 2px;
  left: 4px;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--text-muted);
  line-height: 1;
}

.crossword-cell.active-word {
  background-color: var(--highlight-color) !important;
}

.crossword-cell.focused-cell {
  background-color: var(--active-cell-color) !important;
}

.clue-item {
  font-size: 1rem;
  margin-bottom: 15px;
  line-height: 1.4;
  cursor: pointer;
  padding: 8px 12px;
  border-radius: 8px;
  transition: all 0.2s;
}

.clue-item:hover {
  background: rgba(128, 128, 128, 0.1);
}

.clue-item.active-clue {
  background: var(--highlight-color);
  font-weight: 600;
}

.clue-n {
  font-weight: 700;
  margin-right: 8px;
  color: var(--accent-color);
}

.clue-image-container {
  margin-top: 10px;
  max-width: 100%;
  overflow: hidden;
  border-radius: 6px;
  border: 1px solid var(--border-color);
}

.clue-image {
  display: block;
  width: 100%;
  height: auto;
}

.crossword-cell.correct input {
  color: #28a745 !important;
}

.crossword-cell.incorrect input {
  color: #dc3545 !important;
}

/* Past Mini Cards */
.mini-card {
  background: var(--blockquote-bg);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 20px;
  min-width: 180px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.2, 0, 0, 1);
  text-align: center;
  flex: 0 0 auto;
  margin-top: 10px; /* Space for upward movement */
}

.mini-card:hover {
  transform: translateY(-5px);
  background: var(--blockquote-bg);
  border-color: var(--accent-color);
  box-shadow: var(--card-shadow-brutal);
}

.mini-card.active-mini {
  border-color: var(--accent-color);
  background: var(--active-cell-color);
}

.mini-card h5 {
  font-weight: 700;
  margin-bottom: 5px;
}

.mini-card p {
  font-size: 0.85rem;
  margin-bottom: 0;
  opacity: 0.7;
}

/* --- Announcements Styles --- */
.news-desc-preview {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  line-height: 1.5;
  margin-top: 5px;
}

.deadline-badge {
  background: rgba(0, 0, 0, 0.05);
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 0.8rem;
  color: var(--text-muted);
  border: 1px solid var(--border-color);
  display: inline-flex;
  align-items: center;
  font-weight: 500;
}

/* --- Home Crossword Visual (Professional Refinement) --- */
.crossword-visual {
  background-image: radial-gradient(var(--border-color) 1px, transparent 1px);
  background-size: 200% 100%; /* animation needs this or similar */
  background-size: 20px 20px; /* Subtle anchor dots */
  padding: 30px 20px 20px 20px; /* Extra top padding for hover room */
  border-radius: 20px;
}

.cw-grid {
  display: grid;
  grid-template-columns: repeat(7, 38px);
  grid-gap: 6px;
  justify-content: center;
  background: transparent;
}

.cw-tile {
  width: 38px;
  height: 38px;
  background: var(--card-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  color: var(--text-color);
  font-size: 1.1rem;
  font-family: "Inter", sans-serif;
  text-transform: uppercase;
  border-radius: 4px;
  position: relative;
  border: 1px solid var(--card-border);
  box-shadow: var(--card-shadow);
  transition: all 0.3s cubic-bezier(0.2, 0, 0, 1);
}

.cw-tile:hover {
  transform: translateY(-5px);
  box-shadow: var(--card-shadow-brutal);
  border-color: var(--accent-color);
}

.cw-number {
  position: absolute;
  top: 3px;
  left: 4px;
  font-size: 0.55rem;
  font-weight: 600;
  color: var(--text-muted);
  line-height: 1;
}

.cw-tile.black {
  visibility: hidden;
}

@media (max-width: 576px) {
  .crossword-visual {
    padding: 20px;
  }
  .cw-grid {
    grid-template-columns: repeat(7, 28px) !important;
    grid-gap: 4px;
  }
  .cw-tile {
    width: 28px;
    height: 28px;
    font-size: 0.9rem;
  }
}
/* --- Reels: full-bleed autoplaying rail linking out to Instagram ---
   Breaks out of .container to span the viewport edge-to-edge (same trick
   as .hero-header), with scroll-snap so it swipes cleanly on mobile. Every
   card is forced to the same aspect-ratio + object-fit:cover regardless
   of the source clip's own aspect (our 3 reels are a mix of landscape and
   portrait) — without this, mismatched natural video heights left uneven
   gaps under the shorter clips. */
/* Breakout via margins, NOT `left + translateX(-50%)`: a transform here is
   fragile (anything else that touches transform on this element — a fade-up
   animation, a hover — silently cancels the centering and throws the whole
   rail off to one side). Negative margins can't be clobbered that way. */
.reels-rail-wrap {
  position: relative;
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding: 0 60px;
  box-sizing: border-box;
}

.reels-rail {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 10px 4px 30px;
}

.reels-rail::-webkit-scrollbar {
  display: none;
}

/* Three cards per view, each a third of the rail (the rail being the full
   viewport minus its side padding). `aspect-ratio` is landscape rather than
   portrait so the cards don't tower over the section. */
.reel-item {
  position: relative;
  /* 2 gaps of 20px shared across 3 cards = 13.33px off each */
  flex: 0 0 calc(33.333% - 13.34px);
  margin: 0;
  scroll-snap-align: start;
  transition: transform 0.3s ease;
}

.reel-item:hover {
  transform: translateY(-6px);
}

/* The aspect box lives on the video, not the figure — the caption sits below
   the frame rather than inside it. */
.reel-item video {
  display: block;
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: 18px;
  background: #000;
  box-shadow: var(--card-shadow);
  transition: box-shadow 0.3s ease;
}

.reel-item:hover video {
  box-shadow: var(--card-shadow-hover);
}

/* --- Caption: editorial/fashion-plate treatment --- */
.reel-caption {
  padding: 18px 4px 0;
}

.reel-title {
  margin: 0;
  font-family: "Playfair Display", serif;
  font-weight: 700;
  font-size: 1.45rem;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--heading-color);
}

.reel-dek {
  margin: 6px 0 0;
  font-family: "Playfair Display", serif;
  font-style: italic;
  font-size: 1rem;
  line-height: 1.45;
  color: var(--text-muted);
}

.reel-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.55);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: background 0.2s ease, transform 0.2s ease;
  /* The badge is the ONLY thing that links out to Instagram — clicking the
     video itself deliberately does nothing. */
  text-decoration: none;
  z-index: 2;
}

.reel-badge:hover,
.reel-badge:focus {
  background: rgba(0, 0, 0, 0.85);
  color: #fff;
  transform: scale(1.12);
  text-decoration: none;
}

.reels-rail-wrap .carousel-arrow {
  position: absolute;
  /* Centred on the video frame, not the figure — the caption below it would
     otherwise drag the arrows visibly low. */
  top: 38%;
  transform: translateY(-50%);
  z-index: 10;
}

.reels-rail-wrap .carousel-arrow.left {
  left: 15px;
}

.reels-rail-wrap .carousel-arrow.right {
  right: 15px;
}

@media (max-width: 576px) {
  .reels-rail-wrap {
    padding: 0 16px;
  }
  /* Swipe instead of arrows on small screens (see also the tablet rule below) */
  .reels-rail-wrap .carousel-arrow {
    display: none;
  }
  /* One at a time on phones — half a phone screen is too small to see. */
  .reel-item {
    flex-basis: 82%;
  }
  .reel-title {
    font-size: 1.25rem;
  }
  .reel-dek {
    font-size: 0.95rem;
  }
}
/* Tablets: three across is too cramped, so drop to two and let the third
   scroll — same as the featured grid's md breakpoint. */
@media (min-width: 577px) and (max-width: 991px) {
  .reel-item {
    flex-basis: calc(50% - 10px);
  }
}
/* --- Reels section heading: a rule, not a hero-header banner --- */
.reels-heading-row {
  display: flex;
  align-items: center;
  gap: 20px;
  max-width: 1000px;
  margin: 0 auto 2rem;
  padding: 0 24px;
}

.reels-heading-rule {
  flex: 1 1 auto;
  height: 1px;
  background: var(--border-color);
}

.dark-mode .reels-heading-rule {
  background: rgba(255, 255, 255, 0.55);
}

.reels-heading-title {
  flex: 0 0 auto;
  margin: 0;
  /* Anton — the closest free match to the Marvel logotype's Benton Sans
     Extra Compressed Black. Wants uppercase and tight tracking to read the
     way that logo does. */
  font-family: "Anton", "Inter", sans-serif;
  font-weight: 400;
  font-size: 2.3rem;
  line-height: 1;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--heading-color);
  white-space: nowrap;
}

.reels-heading-insta {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.03em;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s ease;
}

.reels-heading-insta:hover {
  color: var(--link-color);
  text-decoration: none;
}

@media (max-width: 576px) {
  .reels-heading-row {
    flex-wrap: wrap;
    justify-content: center;
    row-gap: 10px;
  }
  .reels-heading-rule {
    display: none;
  }
  .reels-heading-insta {
    flex-basis: 100%;
    justify-content: center;
  }
}

/*# sourceMappingURL=main.css.map */