* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;  
  font-family: 'Raleway Regular', sans-serif;
  background-color: #fff;
  color: #111;
}

.use-case-box {
  display: flex;
  flex-direction: column;
  font-family: 'Raleway Regular', sans-serif;
  background-color: #c6cacc;
  color: #111;
  padding: 5px 15px 5px 15px;
  border-radius: 12px;
}

section {
  margin-bottom: 2rem;
}

p, figure {
  margin-bottom: 1.5rem;
}

h1, h2, h3{
  margin-top: 1em;
  margin-bottom: 1em;
  font-weight: 500;
}

ul, ol {
  margin-bottom: 1em;
  padding-left: 3em;
}

li {
  margin-bottom: 0.5em;
}

figcaption {
  margin-top: 0.5em;
  text-align: center;
  font-size: 12px;
  font-style: italic;
}

.arrow-list {
  list-style: none;
  padding-left: 3em;
}

.arrow-list li {
  position: relative;
  padding-left: 2em;
}

.arrow-list li::before {
  content: "➤";
  position: absolute;
  left: 0;
  color: #333;
}

header {
  background-color: #A92324;
  color: white;
  padding: 13px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: 'League Spartan', sans-serif;
  font-weight: 300;
  flex-shrink: 0;
}

.header-container {
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.logo {
  display: flex;
  align-items: center;
  font-size: 20px; 
  font-family: 'League Spartan', sans-serif;
}

.logo img {
  height: 30px;
  margin-right: 10px;
  border-radius: 12px;
}

.nav-buttons button {
  margin-left: 10px;
  background: none;
  color: white;
  border: 1px solid white;
  border-radius: 5px;
  padding: 5px 10px;
  cursor: pointer;
}

.container {
  max-width: 700px;
  margin: 30px auto;
  box-sizing: border-box;
  padding: 0 15px;
  flex: 1 0 auto;
}

.index-container {
  margin: 30px auto;
  box-sizing: border-box;
  padding: 0 15px;
  flex: 1 0 auto;
}

.content {
  max-width: 700px;
  margin: 40px auto;
  box-sizing: border-box;
  padding: 0 15px;
  flex: 1 0 auto;
}

.subheading {
  font-size: 20px;
  margin-bottom: 15px;
}

.meta-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.date {
  color: #666;
  font-size: 14px;
}

.social-buttons {
  display: flex;
}

.social-button {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 0.3s, color 0.3s;
}

.social-button:hover {
  background-color: #A92324;
  color: white;
}

.article-image {
  width: 100%;
}

.text-content {
  font-size: 16px;
  line-height: 1.6;
}

footer {
  background-color: #A92324;
  color: white;
  padding: 40px 20px;
  font-family: 'League Spartan', sans-serif;
  font-weight: 300;
  width: 100%;
  flex-shrink: 0;
  box-sizing: border-box;
}

.footer-container {
  max-width: 700px;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: space-between;
}

.footer-left {
  flex: 1;
  max-width: 300px;
}

.footer-logo {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  font-family: 'League Spartan', sans-serif;
}

.footer-logo img {
  height: 30px;
  margin-right: 10px;
  border-radius: 12px;
}

.guides-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr); 
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem;
}

@media (max-width: 900px) {
  .guides-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .guides-grid {
    grid-template-columns: 1fr;
    padding: 0.5rem;
  }
}

.guide-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
  padding: 1rem;
  text-align: center;
}

.guide-image {
  width: 100%;
  height: auto;
  max-width: 250px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  margin-bottom: 1rem;
}

@media (max-width: 600px) {
  .guide-image {
    max-width: 100%;
  }
}

.guide-text {
  display: flex;
  flex-direction: column;
  align-items: left;
}

.guide-date {
  font-size: 0.875rem;
  color: #777;
  margin-bottom: 0.5rem;
}

.guide-title {
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.4;
  margin-bottom: 0.5rem;
}

.guide-link {
  color: #a63f3f;
  text-decoration: none;
}

.guide-link:hover {
  text-decoration: underline;
}

	
@media screen and (max-width: 768px) {
  header {
	flex-direction: column;
	gap: 15px;
  }

  .meta-row {
	flex-direction: column;
	align-items: flex-start;
	gap: 10px;
  }

  .footer-container {
	flex-direction: column;
	gap: 20px;
  }
}

