/* Clearfix utility */
.clear {
  clear: both;
}

/* --- List Styling --- */

/* General unordered link list styling */
ul.linklist {
  padding: 0 0 0 15px;
  margin: 0;
  list-style-type: disc;
  color: #55707D;
}

ul.linklist li ul {
  padding-left: 16px;
}

.linklist li {
  padding: 0 0 0.2em 0;
}

.linklist li a {
  text-decoration: none;
}

.linklist li a:hover {
  text-decoration: underline;
}

/* Basic list styling with no indentation */
ul.list,
ul.noindent {
  padding: 0 0 0 15px;
  margin: 0;
  list-style-type: disc;
  color: #000;
}

/* Underlined list items */
ul.underline li a {
  text-decoration: underline;
}

/* Basic list item styling */
.list li,
.noindent li {
  padding: 0 0 0.2em 0;
}

/* Ordered list with no indentation */
ol.list,
ol.noindent {
  padding: 0 0 0 20px;
  margin: 0;
  list-style-type: decimal;
  color: #000;
}

/* Extra spacing in list items */
.extraspace li {
  margin-bottom: 10px;
}

.extraspace li ul li {
  margin-top: 10px;
}

.extraspace2 li {
  margin-bottom: 10px;
}

.extraspace2 li ul li {
  margin-top: 0;
  margin-bottom: 0;
}

/* No bullet points and no indentation */
ul.nobullet.noindent {
  padding: 0;
  list-style-type: none;
}

/* Taglist styling */
.taglist > ul,
ul.taglist {
  padding-left: 0;
  list-style: none;
  margin: 5px 0;
}

.taglist > ul > li,
ul.taglist > li {
  display: inline-block;
  text-transform: uppercase;
  font-size: 0.8em;
  color: #666666;
}

.taglist > ul > li::after,
ul.taglist > li::after {
  content: " | ";
  padding: 0 5px;
}

.taglist > ul > li:last-child::after,
ul.taglist > li:last-child::after {
  content: "";
}

/* Clickable tags styling */
.taglist.clickable > ul > li > a {
  display: block;
  padding: 5px;
  margin-bottom: 5px;
  border: 1px solid #BE820E;
  text-decoration: none;
}

.taglist.clickable > ul > li > a:hover {
  background-color: #BE820E;
  color: #FFFFFF;
}

/* Grey tag styling */
span.tag-grey {
  display: inline-block;
  background-color: rgba(0, 0, 0, 0.1);
  padding: 3px 7px;
  margin-right: 7px;
  border-radius: 2px;
  font-size: 0.85rem;
  text-transform: uppercase;
  text-shadow: 1px 1px rgba(240, 240, 240, 0.8);
  font-weight: normal;
}

/* Footer link list styling */
ul.linklist-footer {
  list-style: none;
  padding-left: 0;
}

ul.linklist-footer > li {
  padding: 7px 0;
  border-bottom: 1px solid #F5EDDE;
}

/* --- Divider Line Styling --- */

.divline-solid.marginbottom {
  border-bottom: 1px solid #be830e;
  margin-bottom: 20px !important;
}

/* --- Box Styling --- */

.box {
  padding: 1rem;
  border-top: 5px solid;
  margin: 10px 0;
}

/* Green themed box */
.box.green {
  border-top-color: #007236;
  background-color: #E6F1EB;
}

/* Gold themed box */
.box.gold {
  border-top-color: #be830e;
  background-color: #f5edde;
}

/* --- Date Block Styling --- */

.dateblock {
  float: left;
  width: 85px;
  padding: 10px;
  text-align: center;
  border-radius: 8px;
  color: #936700;
}

.dateblock > .day {
  font-size: 2rem;
  line-height: 2rem;
  font-weight: 600;
  border-bottom: 1px solid #936700;
  padding: 5px 0 10px 0;
}

.dateblock > .month {
  text-transform: uppercase;
  padding-top: 10px;
}

/* Additional date text styling */
.datetext {
  padding-top: 10px;
}

/* --- Icon Styling --- */

.icon-centered-container {
  display: block;
  position: relative;
}

.icon-centered {
  position: absolute;
  left: 46%;
  top: 46%;
}

.icon-centered.icon-youtube {
  left: calc(50% - 40px);
  top: calc(50% - 60px);
}

.icon-youtube::before {
  font-family: 'Font Awesome 5 Brands';
  content: '\f167';
  color: #ff0000;
  font-weight: 900;
  font-size: 70px;
}

/* External link icon styling */
a.link-external::after {  
  display: inline-block;
  content: "\f08e";
  padding-left: 0.2rem;
  font-family: var(--fa-style-family, "Font Awesome 6 Free");
  font-weight: var(--fa-style, 900);
}

/* --- Miscellaneous --- */

.paragraph-no-margins p {
  margin: 0;
}

/* Height and width utility classes */
.h-500px {
  height: 500px;
}

.w-500px {
  width: 500px;
}
