/**
 * Reset some basic elements
 */
body, h1, h2, h3, h4, h5, h6,
p, blockquote, pre, hr,
dl, dd, ol, ul, figure {
  margin: 0;
  padding: 0;
}

/**
 * Basic styling
 */
body {
  font: 400 16px/1.5 -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  color: #e8e8e8;
  background-color: #111111;
  -webkit-text-size-adjust: 100%;
  -webkit-font-feature-settings: "kern" 1;
  -moz-font-feature-settings: "kern" 1;
  -o-font-feature-settings: "kern" 1;
  font-feature-settings: "kern" 1;
  font-kerning: normal;
  display: flex;
  min-height: 100vh;
  flex-direction: column;
}

/**
 * Set `margin-bottom` to maintain vertical rhythm
 */
h1, h2, h3, h4, h5, h6,
p, blockquote, pre,
ul, ol, dl, figure,
.highlight {
  margin-bottom: 15px;
}

/**
 * `main` element
 */
main {
  display: block; /* Default value of `display` of `main` element is 'inline' in IE 11. */
}

/**
 * Images
 */
img {
  max-width: 100%;
  vertical-align: middle;
}

/**
 * Figures
 */
figure > img {
  display: block;
}

figcaption {
  font-size: 14px;
}

/**
 * Lists
 */
ul, ol {
  margin-left: 30px;
}

li > ul,
li > ol {
  margin-bottom: 0;
}

/**
 * Headings
 */
h1, h2, h3, h4, h5, h6 {
  font-weight: 400;
}

/**
 * Links
 */
a {
  color: #e8e8e8;
  text-decoration: none;
}
a:visited {
  color: rgb(193.75, 193.75, 193.75);
}
a:hover {
  color: #e8e8e8;
  text-decoration: underline;
}
.social-media-list a:hover {
  text-decoration: none;
}
.social-media-list a:hover .username {
  text-decoration: underline;
}

/**
 * Blockquotes
 */
blockquote {
  color: #aaaaaa;
  border-left: 4px solid #333333;
  padding-left: 15px;
  font-size: 18px;
  letter-spacing: -1px;
  font-style: italic;
}
blockquote > :last-child {
  margin-bottom: 0;
}

/**
 * Code formatting
 */
pre,
code {
  font-size: 15px;
  border: 1px solid #333333;
  border-radius: 3px;
  background-color: #eef;
}

code {
  padding: 1px 5px;
}

pre {
  padding: 8px 12px;
  overflow-x: auto;
}
pre > code {
  border: 0;
  padding-right: 0;
  padding-left: 0;
}

/**
 * Wrapper
 */
.wrapper {
  max-width: -webkit-calc(800px - (30px * 2));
  max-width: calc(800px - 30px * 2);
  margin-right: auto;
  margin-left: auto;
  padding-right: 30px;
  padding-left: 30px;
}
@media screen and (max-width: 800px) {
  .wrapper {
    max-width: -webkit-calc(800px - (30px));
    max-width: calc(800px - (30px));
    padding-right: 15px;
    padding-left: 15px;
  }
}

/**
 * Clearfix
 */
.footer-col-wrapper:after, .wrapper:after {
  content: "";
  display: table;
  clear: both;
}

/**
 * Icons
 */
.svg-icon {
  width: 16px;
  height: 16px;
  display: inline-block;
  fill: #aaaaaa;
  padding-right: 5px;
  vertical-align: text-top;
}

.social-media-list li + li {
  padding-top: 5px;
}

/**
 * Tables
 */
table {
  margin-bottom: 30px;
  width: 100%;
  text-align: left;
  color: white;
  border-collapse: collapse;
  border: 1px solid #333333;
}
table tr:nth-child(even) {
  background-color: rgb(66.3, 66.3, 66.3);
}
table th, table td {
  padding: 9.999999999px 15px;
}
table th {
  background-color: rgb(58.65, 58.65, 58.65);
  border: 1px solid rgb(40.8, 40.8, 40.8);
  border-bottom-color: rgb(20.4, 20.4, 20.4);
}
table td {
  border: 1px solid #333333;
}

/**
 * Site header
 */
.site-header {
  border-top: 5px solid #cccccc;
  border-bottom: 1px solid #333333;
  min-height: 55.95px;
  position: relative;
}

.site-title {
  font-size: 26px;
  font-weight: 300;
  line-height: 54px;
  letter-spacing: -1px;
  margin-bottom: 0;
  float: left;
}
.site-title, .site-title:visited {
  color: #cccccc;
}

.site-nav {
  float: right;
  line-height: 54px;
}
.site-nav .nav-trigger {
  display: none;
}
.site-nav .menu-icon {
  display: none;
}
.site-nav .page-link {
  color: #e8e8e8;
  line-height: 1.5;
}
.site-nav .page-link:not(:last-child) {
  margin-right: 20px;
}
@media screen and (max-width: 600px) {
  .site-nav {
    position: absolute;
    top: 9px;
    right: 15px;
    background-color: #111111;
    border: 1px solid #333333;
    border-radius: 5px;
    text-align: right;
  }
  .site-nav label[for=nav-trigger] {
    display: block;
    float: right;
    width: 36px;
    height: 36px;
    z-index: 2;
    cursor: pointer;
  }
  .site-nav .menu-icon {
    display: block;
    float: right;
    width: 36px;
    height: 26px;
    line-height: 0;
    padding-top: 10px;
    text-align: center;
  }
  .site-nav .menu-icon > svg {
    fill: #cccccc;
  }
  .site-nav input ~ .trigger {
    clear: both;
    display: none;
  }
  .site-nav input:checked ~ .trigger {
    display: block;
    padding-bottom: 5px;
  }
  .site-nav .page-link {
    display: block;
    margin-left: 20px;
    padding: 5px 10px;
  }
  .site-nav .page-link:not(:last-child) {
    margin-right: 0;
  }
}

/**
 * Site footer
 */
.site-footer {
  border-top: 1px solid #333333;
  padding: 30px 0;
}

.footer-heading {
  font-size: 18px;
  margin-bottom: 15px;
}

.contact-list,
.social-media-list {
  list-style: none;
  margin-left: 0;
}

.footer-col-wrapper {
  font-size: 15px;
  color: #aaaaaa;
  margin-left: -15px;
}

.footer-col {
  float: left;
  margin-bottom: 15px;
  padding-left: 15px;
}

.footer-col-1 {
  width: -webkit-calc(35% - (30px / 2));
  width: calc(35% - 30px / 2);
}

.footer-col-2 {
  width: -webkit-calc(20% - (30px / 2));
  width: calc(20% - 30px / 2);
}

.footer-col-3 {
  width: -webkit-calc(45% - (30px / 2));
  width: calc(45% - 30px / 2);
}

@media screen and (max-width: 800px) {
  .footer-col-1,
  .footer-col-2 {
    width: -webkit-calc(50% - (30px / 2));
    width: calc(50% - 30px / 2);
  }
  .footer-col-3 {
    width: -webkit-calc(100% - (30px / 2));
    width: calc(100% - 30px / 2);
  }
}
@media screen and (max-width: 600px) {
  .footer-col {
    float: none;
    width: -webkit-calc(100% - (30px / 2));
    width: calc(100% - 30px / 2);
  }
}
/**
 * Page content
 */
.page-content {
  padding: 30px 0;
  flex: 1;
}

.page-heading {
  font-size: 32px;
}

.post-list-heading {
  font-size: 28px;
}

.post-list {
  margin-left: 0;
  list-style: none;
}
.post-list > li {
  margin-bottom: 30px;
}

.post-meta {
  font-size: 14px;
  color: #aaaaaa;
}

.post-link {
  display: block;
  font-size: 24px;
}

/**
 * Posts
 */
.post-header {
  margin-bottom: 30px;
}

.post-title {
  font-size: 42px;
  letter-spacing: -1px;
  line-height: 1;
}
@media screen and (max-width: 800px) {
  .post-title {
    font-size: 36px;
  }
}

.post-content {
  margin-bottom: 30px;
}
.post-content h2 {
  font-size: 32px;
}
@media screen and (max-width: 800px) {
  .post-content h2 {
    font-size: 28px;
  }
}
.post-content h3 {
  font-size: 26px;
}
@media screen and (max-width: 800px) {
  .post-content h3 {
    font-size: 22px;
  }
}
.post-content h4 {
  font-size: 20px;
}
@media screen and (max-width: 800px) {
  .post-content h4 {
    font-size: 18px;
  }
}

/**
 * Syntax highlighting styles
 */
.highlight {
  background: #fff;
}
.highlighter-rouge .highlight {
  background: #eef;
}
.highlight .c {
  color: #998;
  font-style: italic;
}
.highlight .err {
  color: #a61717;
  background-color: #e3d2d2;
}
.highlight .k {
  font-weight: bold;
}
.highlight .o {
  font-weight: bold;
}
.highlight .cm {
  color: #998;
  font-style: italic;
}
.highlight .cp {
  color: #999;
  font-weight: bold;
}
.highlight .c1 {
  color: #998;
  font-style: italic;
}
.highlight .cs {
  color: #999;
  font-weight: bold;
  font-style: italic;
}
.highlight .gd {
  color: #000;
  background-color: #fdd;
}
.highlight .gd .x {
  color: #000;
  background-color: #faa;
}
.highlight .ge {
  font-style: italic;
}
.highlight .gr {
  color: #a00;
}
.highlight .gh {
  color: #999;
}
.highlight .gi {
  color: #000;
  background-color: #dfd;
}
.highlight .gi .x {
  color: #000;
  background-color: #afa;
}
.highlight .go {
  color: #888;
}
.highlight .gp {
  color: #555;
}
.highlight .gs {
  font-weight: bold;
}
.highlight .gu {
  color: #aaa;
}
.highlight .gt {
  color: #a00;
}
.highlight .kc {
  font-weight: bold;
}
.highlight .kd {
  font-weight: bold;
}
.highlight .kp {
  font-weight: bold;
}
.highlight .kr {
  font-weight: bold;
}
.highlight .kt {
  color: #458;
  font-weight: bold;
}
.highlight .m {
  color: #099;
}
.highlight .s {
  color: #d14;
}
.highlight .na {
  color: #008080;
}
.highlight .nb {
  color: #0086B3;
}
.highlight .nc {
  color: #458;
  font-weight: bold;
}
.highlight .no {
  color: #008080;
}
.highlight .ni {
  color: #800080;
}
.highlight .ne {
  color: #900;
  font-weight: bold;
}
.highlight .nf {
  color: #900;
  font-weight: bold;
}
.highlight .nn {
  color: #555;
}
.highlight .nt {
  color: #000080;
}
.highlight .nv {
  color: #008080;
}
.highlight .ow {
  font-weight: bold;
}
.highlight .w {
  color: #bbb;
}
.highlight .mf {
  color: #099;
}
.highlight .mh {
  color: #099;
}
.highlight .mi {
  color: #099;
}
.highlight .mo {
  color: #099;
}
.highlight .sb {
  color: #d14;
}
.highlight .sc {
  color: #d14;
}
.highlight .sd {
  color: #d14;
}
.highlight .s2 {
  color: #d14;
}
.highlight .se {
  color: #d14;
}
.highlight .sh {
  color: #d14;
}
.highlight .si {
  color: #d14;
}
.highlight .sx {
  color: #d14;
}
.highlight .sr {
  color: #009926;
}
.highlight .s1 {
  color: #d14;
}
.highlight .ss {
  color: #990073;
}
.highlight .bp {
  color: #999;
}
.highlight .vc {
  color: #008080;
}
.highlight .vg {
  color: #008080;
}
.highlight .vi {
  color: #008080;
}
.highlight .il {
  color: #099;
}

.breadcrumbs {
  font-size: 0.75rem;
  margin-bottom: 1.5rem;
  color: #aaa;
}
.breadcrumbs a {
  color: #ccc !important;
  text-decoration: none;
}
.breadcrumbs a:hover {
  text-decoration: underline;
  color: #c4a843 !important;
}
.breadcrumbs .sep {
  margin: 0 0.4rem;
  color: #666;
}
.breadcrumbs .current {
  color: #ccc;
}

.header-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.site-logo {
  display: flex;
  align-items: center;
  text-decoration: none !important;
  flex-shrink: 0;
}

.logo-img {
  height: 55px;
  width: auto;
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
}

.site-header {
  border-top: none !important;
  border-bottom: 1px solid #ddd;
  padding: 0.5rem 0;
  min-height: auto !important;
}

.site-header .wrapper {
  max-width: 1200px;
  padding-left: 15px;
  padding-right: 15px;
}

.site-nav {
  float: none !important;
  display: flex;
  align-items: center;
  line-height: normal !important;
}

.site-nav .trigger {
  display: flex;
  gap: 0.25rem;
  align-items: center;
}

.site-nav .page-link {
  font-size: 0.95rem;
  font-weight: 500;
  padding: 0.5rem 0.75rem;
  color: #000 !important;
}

.site-nav .page-link:hover {
  color: #c4a843 !important;
}

.wrapper {
  max-width: 1200px !important;
}

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

.site-footer {
  background-color: #fff !important;
  color: #555;
}
.site-footer a, .site-footer a:visited, .site-footer a:link {
  color: #333 !important;
}
.site-footer a:hover, .site-footer a:visited:hover, .site-footer a:link:hover {
  color: #c4a843 !important;
}

@media (max-width: 600px) {
  .logo-img {
    height: 40px;
  }
  .site-nav {
    background-color: #fff !important;
  }
  .site-nav .page-link {
    color: #000 !important;
  }
  .site-nav .trigger {
    display: none;
    flex-direction: column;
    gap: 0;
  }
  .site-nav input:checked ~ .trigger {
    display: flex !important;
  }
}
.site-title {
  display: none !important;
}

h1, .page-heading, .post-title {
  color: #fff;
  font-weight: 700;
  font-size: 1.7rem !important;
}

h2, .post-content h2 {
  font-size: 1.3rem !important;
}

h3, .post-content h3 {
  font-size: 1.1rem !important;
}

h2, h3, h4 {
  color: #fff;
}
h2 a, h3 a, h4 a {
  color: #fff !important;
}
h2 a:hover, h3 a:hover, h4 a:hover {
  color: #c4a843 !important;
}

a:hover {
  color: #c4a843 !important;
}

.post-meta {
  font-style: italic;
}

.featured-cards-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1.5rem;
  margin: 0.25rem 0 2rem 0;
}

.feature-card {
  border: 1px solid #333;
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.feature-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
}
.feature-card a {
  text-decoration: none;
  color: inherit;
  display: block;
  position: relative;
}
.feature-card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  object-position: top;
  display: block;
}

.feature-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.55);
  padding: 0.6rem 1rem;
}
.feature-content h3 {
  margin: 0;
  font-size: 1rem;
  font-weight: 700;
  color: #fff !important;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.feature-meta {
  font-size: 0.9rem;
  font-style: italic;
  margin: 0;
}

.video-thumbnail {
  position: relative;
}
.video-thumbnail .play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(0, 0, 0, 0.7);
  color: white;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  transition: background 0.2s ease;
}
.video-thumbnail:hover .play-button {
  background: rgba(0, 0, 0, 0.85);
}

.hero-banner {
  margin-top: -30px;
  margin-bottom: 0;
  margin-left: calc(-50vw + 50%);
  width: 100vw;
  max-width: 100vw;
  position: relative;
}
.hero-banner > a {
  display: block;
  position: relative;
}
.hero-banner > a > img {
  width: 100%;
  height: 300px;
  object-fit: contain;
  background: #000;
  display: block;
}

.hero-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.55);
  padding: 0.6rem 1.5rem;
  text-align: center;
}
.hero-overlay h2 {
  color: #fff !important;
  margin: 0;
  font-size: 1.2rem;
  font-weight: 700;
}

.site-nav {
  z-index: 1000 !important;
}

.hero-carousel {
  position: relative;
  width: 100%;
  height: 300px;
  overflow: hidden;
  border-radius: 0;
  background: #000;
}
.hero-carousel .hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}
.hero-carousel .hero-slide.active {
  opacity: 1;
}
.hero-carousel .hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.event-promo-figure {
  margin: 1.5rem 0;
  text-align: center;
}
.event-promo-figure .event-promo-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
.event-promo-figure figcaption {
  margin-top: 0.5rem;
  font-size: 0.9rem;
  color: #aaa;
  font-style: italic;
}

.event-detail .event-meta {
  margin-bottom: 1rem;
  line-height: 1.6;
}
.event-detail .event-badge {
  display: inline-block;
  padding: 0.25rem 0.5rem;
  background: #dc3545;
  color: white;
  border-radius: 4px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  margin-top: 0.5rem;
}

@media (max-width: 768px) {
  .hero-carousel,
  .hero-banner > a > img {
    height: 190px;
  }
  .event-promo-figure .event-promo-image {
    border-radius: 4px;
  }
}
.cta-banner {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
  color: white;
  padding: 1.25rem 2rem;
  text-align: center;
  border-radius: 12px;
  margin: 2rem 0 1rem 0;
}
.cta-banner h2 {
  margin: 0 0 0.5rem 0;
  font-size: 1.3rem;
  color: white;
}
.cta-banner p {
  margin: 0 0 0.75rem 0;
  opacity: 0.9;
  font-size: 0.95rem;
  color: white;
}

.social-links {
  margin-top: 1.5rem;
}
.social-links a {
  color: white !important;
  text-decoration: none;
  margin: 0 0.75rem;
  opacity: 0.9;
}
.social-links a:hover {
  opacity: 1;
  text-decoration: underline;
}

a.cta-button,
a.cta-button:visited,
a.cta-button:link,
a.cta-button:hover,
a.cta-button:active {
  display: inline-block;
  background: #c4a843;
  color: #fff !important;
  padding: 0.75rem 2rem;
  border-radius: 6px;
  text-decoration: none !important;
  font-weight: 600;
  transition: background 0.2s ease;
}

a.cta-button:hover {
  background: #a8902e;
}

.event-item {
  border-bottom: 1px solid #333;
  padding: 1.5rem 0;
}
.event-item:last-child {
  border-bottom: none;
}
.event-item h3 {
  margin: 0 0 0.5rem 0;
}
.event-item h3 a {
  text-decoration: none;
  color: #e8e8e8 !important;
}
.event-item h3 a:hover {
  text-decoration: underline;
  color: #c4a843 !important;
}

.event-meta {
  font-size: 0.9rem;
  color: #aaa;
  font-style: italic;
  margin: 0.5rem 0;
  line-height: 1.4;
}

.event-badge {
  display: inline-block;
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
}
.event-badge.sold-out {
  background: #dc3545;
  color: white;
}

@media (max-width: 768px) {
  .featured-cards-row {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .feature-card img {
    height: 160px;
  }
  .feature-content {
    padding: 1rem;
  }
  .cta-banner {
    padding: 2rem 1rem;
  }
  .cta-banner h2 {
    font-size: 1.5rem;
  }
}
.news-grid, .blog-grid {
  display: grid;
  gap: 2rem;
  margin-top: 2rem;
}

.news-item, .blog-item {
  padding: 1.5rem;
  border: 1px solid #333;
  border-radius: 8px;
}
.news-item h2, .blog-item h2 {
  margin: 0 0 0.5rem 0;
}
.news-item h2 a, .blog-item h2 a {
  text-decoration: none;
  color: #e8e8e8 !important;
}
.news-item h2 a:hover, .blog-item h2 a:hover {
  text-decoration: underline;
  color: #c4a843 !important;
}

.news-meta, .blog-meta {
  display: flex;
  gap: 1rem;
  margin: 0.5rem 0;
  font-size: 0.9rem;
  color: #aaa;
  font-style: italic;
}

.type {
  background: #222;
  color: #e8e8e8;
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  font-weight: 500;
}

.video-embed {
  margin-top: 1rem;
}
.video-embed iframe {
  max-width: 100%;
  height: auto;
  aspect-ratio: 16/9;
}

.read-more {
  display: inline-block;
  margin-top: 1rem;
  font-weight: 500;
  text-decoration: none;
}
.read-more:hover {
  text-decoration: underline;
  color: #c4a843;
}

.contact-form {
  max-width: 500px;
  margin: 2rem 0;
}
.contact-form .form-group {
  margin-bottom: 1.5rem;
}
.contact-form .form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
}
.contact-form .form-group input, .contact-form .form-group textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #ccc;
  border-radius: 6px;
  background: #fff;
  color: #000;
  font-size: 1rem;
}
.contact-form .form-group input:focus, .contact-form .form-group textarea:focus {
  outline: none;
  border-color: #c4a843;
}
.contact-form button {
  display: inline-block;
  background: #c4a843;
  color: #fff !important;
  padding: 0.75rem 2rem;
  border: none;
  border-radius: 6px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
}
.contact-form button:hover {
  background: #a8902e;
}

.coming-soon {
  text-align: center;
  padding: 3rem;
}

.home-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
.home-cards .card {
  display: block;
  padding: 1.5rem;
  border: 1px solid #ddd;
  border-radius: 8px;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.home-cards .card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.home-cards .card h3 {
  margin: 0 0 0.5rem 0;
}
.home-cards .card p {
  margin: 0;
}

@media (max-width: 768px) {
  .home-cards {
    grid-template-columns: 1fr;
  }
}
.site-footer {
  border-top: 1px solid #ddd !important;
  padding: 0.5rem 0 1.5rem 0 !important;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.9rem;
}

.footer-logo-img {
  height: 100px;
  width: auto;
}

.footer-right {
  text-align: right;
}

.footer-social a {
  color: #000 !important;
  font-weight: 500;
}
.footer-social a:hover {
  color: #c4a843 !important;
}

.footer-copyright {
  color: #555;
}

.carousel {
  position: relative;
  max-width: 100%;
  overflow: hidden;
  border-radius: 8px;
  margin: 2rem 0;
}

.carousel-track {
  position: relative;
  width: 100%;
  min-height: 400px;
}

.carousel-slide {
  display: none;
}

.carousel-slide.active {
  display: block;
}

.carousel-slide img {
  width: 100%;
  height: auto;
  display: block;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  padding: 1rem 0.75rem;
  font-size: 1.5rem;
  cursor: pointer;
  z-index: 10;
  border-radius: 4px;
}

.carousel-btn:hover {
  background: rgba(0, 0, 0, 0.7);
}

.carousel-prev {
  left: 10px;
}

.carousel-next {
  right: 10px;
}

.carousel-dots {
  text-align: center;
  padding: 1rem 0;
}

.carousel-dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ccc;
  margin: 0 4px;
  cursor: pointer;
}

.carousel-dot.active {
  background: #000;
}

/* Section divider rules */
hr.section-rule {
  border: none;
  border-top: 1px solid #333;
  margin: 2rem 0;
}

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