/* Reset and base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #ffffff;
  font-size: 16px;
  font-weight: 400;
}

/* Top Navigation Banner */
.top-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 24px;
  background-color: #ffffff;
  border-bottom: 1px solid #eee;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.nav-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-favicon {
  width: 24px;
  height: 24px;
  border-radius: 4px;
}

.company-name {
  font-size: 16px;
  font-weight: 600;
  color: #000;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-btn {
  background: none;
  border: none;
  padding: 8px;
  border-radius: 6px;
  cursor: pointer;
  color: #666;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.nav-btn:hover {
  background-color: #f5f5f5;
  color: #333;
}

/* Dropdown Menu */
.dropdown {
  position: relative;
}

.dropdown-content {
  display: none;
  position: absolute;
  right: 0;
  top: 100%;
  background-color: #ffffff;
  min-width: 180px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  border: 1px solid #eee;
  padding: 8px 0;
  margin-top: 8px;
  z-index: 1001;
}

.dropdown-content.show {
  display: block;
}

.dropdown-content a {
  color: #333;
  padding: 12px 16px;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  transition: background-color 0.2s ease;
}

.dropdown-content a:hover {
  background-color: #f5f5f5;
  color: #917434;
}

.dropdown-content a svg {
  width: 16px;
  height: 16px;
  color: #666;
}

/* Cookie Settings Modal */
.cookie-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.cookie-overlay.active {
  opacity: 1;
  visibility: visible;
}

.cookie-modal {
  position: fixed;
  top: 0;
  right: 0;
  width: 600px;
  height: 100vh;
  background-color: #ffffff;
  box-shadow: -4px 0 20px rgba(0, 0, 0, 0.15);
  z-index: 2001;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  overflow-y: auto;
}

.cookie-modal.active {
  transform: translateX(0);
}

.cookie-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 24px;
  border-bottom: 1px solid #eee;
  background-color: #f8f9fa;
}

.cookie-header-left {
  display: flex;
  align-items: center;
  gap: 16px;
}

.cookie-back {
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  border-radius: 6px;
  color: #666;
  transition: all 0.2s ease;
}

.cookie-back:hover {
  background-color: #e9ecef;
  color: #917434;
}

.cookie-report {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #e74c3c;
  font-weight: 500;
}

.cookie-close {
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  border-radius: 6px;
  color: #666;
  transition: all 0.2s ease;
}

.cookie-close:hover {
  background-color: #e9ecef;
  color: #917434;
}

.cookie-modal-content {
  padding: 24px;
}

.cookie-modal-content h3 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 24px;
  color: #000;
}

.cookie-section {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cookie-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  border: 1px solid #eee;
  border-radius: 12px;
  background-color: #fafafa;
}

.cookie-item-content h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 4px;
  color: #000;
}

.cookie-item-content p {
  font-size: 14px;
  color: #666;
  margin: 0;
  line-height: 1.4;
}

.cookie-toggle {
  display: flex;
  align-items: center;
}

.cookie-toggle input[type="checkbox"] {
  display: none;
}

.toggle-label {
  position: relative;
  width: 44px;
  height: 24px;
  background-color: #ddd;
  border-radius: 12px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.toggle-label:hover {
  background-color: #bbb;
}

.toggle-switch {
  position: absolute;
  top: 2px;
  left: 2px;
  width: 20px;
  height: 20px;
  background-color: white;
  border-radius: 50%;
  transition: transform 0.3s ease;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.cookie-toggle input[type="checkbox"]:checked + .toggle-label {
  background-color: #007AFF;
}

.cookie-toggle input[type="checkbox"]:checked + .toggle-label .toggle-switch {
  transform: translateX(20px);
}

.cookie-toggle input[type="checkbox"]:disabled + .toggle-label {
  background-color: #007AFF;
  cursor: not-allowed;
  opacity: 0.7;
}

.cookie-toggle input[type="checkbox"]:disabled + .toggle-label:hover {
  background-color: #007AFF;
}

/* Share Side Panel */
.share-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.share-overlay.active {
  opacity: 1;
  visibility: visible;
}

.share-panel {
  position: fixed;
  top: 0;
  right: 0;
  width: 400px;
  height: 100vh;
  background-color: #ffffff;
  box-shadow: -4px 0 20px rgba(0, 0, 0, 0.15);
  z-index: 2001;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  overflow-y: auto;
}

.share-panel.active {
  transform: translateX(0);
}

.share-panel-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px;
  border-bottom: 1px solid #eee;
}

.share-panel-header h3 {
  font-size: 20px;
  font-weight: 600;
  margin: 0;
  color: #000;
}

.share-close {
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  border-radius: 6px;
  color: #666;
  transition: all 0.2s ease;
}

.share-close:hover {
  background-color: #f5f5f5;
  color: #917434;
}

.share-panel-content {
  padding: 24px;
}

.share-preview {
  display: flex;
  gap: 16px;
  margin-bottom: 32px;
  padding: 16px;
  border: 1px solid #eee;
  border-radius: 12px;
  background-color: #fafafa;
}

.share-preview-image {
  width: 60px;
  height: 60px;
  border-radius: 8px;
  object-fit: cover;
  flex-shrink: 0;
}

.share-preview-text h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 4px;
  color: #000;
}

.share-preview-text p {
  font-size: 14px;
  color: #666;
  line-height: 1.4;
  margin: 0;
}

.share-url {
  margin-bottom: 32px;
}

.share-url-input {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 14px;
  font-family: inherit;
  background-color: #f9f9f9;
  margin-bottom: 12px;
  outline: none;
}

.copy-url-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
  padding: 12px 16px;
  background-color: #007AFF;
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.copy-url-btn:hover {
  background-color: #0056D2;
}

.share-social {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.social-btn {
  width: 48px;
  height: 48px;
  border: 1px solid #ddd;
  border-radius: 8px;
  background-color: #ffffff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.social-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.linkedin-btn {
  color: #0077B5;
}

.linkedin-btn:hover {
  background-color: #0077B5;
  color: white;
  border-color: #0077B5;
}

.twitter-btn {
  color: #1DA1F2;
}

.twitter-btn:hover {
  background-color: #1DA1F2;
  color: white;
  border-color: #1DA1F2;
}

.whatsapp-btn {
  color: #25D366;
}

.whatsapp-btn:hover {
  background-color: #25D366;
  color: white;
  border-color: #25D366;
}

.facebook-btn {
  color: #1877F2;
}

.facebook-btn:hover {
  background-color: #1877F2;
  color: white;
  border-color: #1877F2;
}

.email-btn {
  color: #666;
}

.email-btn:hover {
  background-color: #666;
  color: white;
  border-color: #666;
}

/* Banner */
.banner {
  height: 280px;
  background-image: url('../img/Banner1.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 100%;
  border-bottom: 2px solid #e0e0e0;
}

/* Profile Picture Container */
.profile-container {
  position: relative;
  display: flex;
  justify-content: flex-start;
  max-width: 680px;
  margin: -80px auto 60px auto; /* Position logo to straddle banner/content border and center container */
  padding-left: 40px; /* Match main content padding */
  z-index: 10;
}

.profile-picture {
  height: 160px;
  width: 160px;
  border-radius: 16px; /* Square with rounded corners, not circular */
  border: 4px solid #ffffff;
  background-color: #ffffff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  object-fit: contain;
  padding: 10px;
}

/* Main content container */
main {
  max-width: 680px;
  margin: 0 auto;
  padding: 0 40px 60px;
  background-color: #ffffff;
}

/* Typography */
h1 {
  font-size: 38px;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 24px;
  color: #000;
  letter-spacing: -0.02em;
}

ul, ol {
  margin: 16px 0;
  padding-left: 24px;
}

li {
  margin-bottom: 8px;
  line-height: 1.6;
}

h2 {
  font-size: 30px;
  font-weight: 600;
  line-height: 1.2;
  margin: 48px 0 24px 0;
  color: #000;
  letter-spacing: -0.01em;
  padding-bottom: 12px;
  border-bottom: 1px solid #e9ecef;
}

h3 {
  font-size: 20px;
  font-weight: 600;
  line-height: 1.3;
  margin: 32px 0 12px 0;
  color: #000;
  letter-spacing: -0.005em;
}

p {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  margin-bottom: 20px;
  color: #333;
}

/* Removed tagline styling - now using regular paragraphs */

/* Section spacing */
section {
  margin-bottom: 48px;
}

.intro {
  margin-bottom: 56px;
}

.intro h1 {
  font-size: 38px;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 32px;
  color: #000;
  letter-spacing: -0.02em;
}

.intro p {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  margin-bottom: 24px;
  color: #333;
  max-width: none;
}

@media (max-width: 768px) {
  .intro h1 {
    font-size: 27px;
  }
}

/* Investment items styling */
.investment-item {
  display: flex;
  gap: 24px;
  margin-bottom: 32px;
  padding: 0;
  align-items: flex-start;
}

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

.investment-logo {
  flex-shrink: 0;
  width: 120px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.placeholder-logo {
  width: 80px;
  height: 80px;
  background-color: #e9ecef;
  border: 2px dashed #adb5bd;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 500;
  color: #6c757d;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.company-logo {
  max-width: 120px;
  max-height: 80px;
  width: auto;
  height: auto;
  object-fit: contain;
}

.investment-content {
  flex: 1;
}

.investment-content p {
  margin-bottom: 16px;
  line-height: 1.6;
  color: #333;
}

.investment-content p:last-child {
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .investment-item {
    flex-direction: column;
    gap: 16px;
    padding: 0;
  }
  
  .investment-logo {
    width: 100px;
    height: 60px;
    align-self: center;
  }
  
  .placeholder-logo {
    width: 60px;
    height: 60px;
    font-size: 10px;
  }
  
  .company-logo {
    max-width: 100px;
    max-height: 60px;
    width: auto;
    height: auto;
  }
}

/* Table of Contents */
.table-of-contents {
  background-color: #f8f9fa;
  border: 1px solid #e9ecef;
  border-radius: 8px;
  margin-bottom: 48px;
  overflow: hidden;
}

.toc-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  background-color: #ffffff;
  border-bottom: 1px solid #e9ecef;
  cursor: pointer;
  transition: background-color 0.2s ease;
  user-select: none;
}

.toc-header:hover {
  background-color: #f8f9fa;
  color: #917434;
}

.toc-icon {
  font-size: 14px;
  color: #666;
  transition: transform 0.2s ease;
}

.toc-title {
  font-size: 16px;
  font-weight: 600;
  color: #333;
}

.toc-content {
  padding: 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.toc-content.active {
  max-height: 500px;
  padding: 20px;
}

.toc-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-left: 28px; /* Indent to match "Table of Contents" text alignment */
}

.toc-list a {
  color: #333;
  text-decoration: underline;
  text-decoration-color: #e9ecef;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
  font-size: 15px;
  line-height: 1.5;
  transition: color 0.2s ease, text-decoration-color 0.2s ease;

  display: inline;
  margin-bottom: 8px;
}

.toc-list a:hover {
  color: #917434;
  text-decoration-color: #917434;
}

/* Team member styling */
.team-member {
  margin-bottom: 40px;
}

.team-member h3 {
  margin-bottom: 16px;
  margin-top: 32px;
}

.team-member:first-child h3 {
  margin-top: 16px;
}

/* Help section styling */
.help-item {
  margin-bottom: 32px;
}

.help-item h3 {
  margin-bottom: 12px;
  margin-top: 24px;
}

.help-item:first-child h3 {
  margin-top: 16px;
}

/* FAQ section styling */
.faq-item {
  margin-bottom: 24px;
}

.faq-question {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 0;
  margin: 0;
  cursor: pointer;
  transition: color 0.2s ease;
  user-select: none;
}

.faq-question:hover {
  color: #917434;
}

.faq-icon {
  font-size: 14px;
  color: #666;
  transition: transform 0.2s ease;
  flex-shrink: 0;
  margin-top: 2px;
}

.faq-icon.rotated {
  transform: rotate(180deg);
}

.faq-answer {
  display: none;
  padding: 0;
  margin-top: 16px;
}

.faq-answer.active {
  display: block;
}

.faq-answer p:last-child,
.faq-answer ul:last-child,
.faq-answer ol:last-child {
  margin-bottom: 0;
}

/* Social Links */
.social-links {
  text-align: left;
  margin: 48px 0 32px 0;
  padding-top: 16px;
}

.social-links a {
  color: #666;
  text-decoration: none;
  font-size: 16px;
  transition: color 0.2s ease;
}

.social-links a:hover {
  color: #917434;
}

.social-links span {
  color: #ccc;
  margin: 0 8px;
}

/* Legal Section */
.legal {
  margin-top: 32px;
  margin-bottom: 32px;
}

.legal-disclaimer {
  font-size: 14px;
  line-height: 1.5;
  color: #666;
  margin-bottom: 16px;
  font-style: italic;
}

/* Footer */
footer {
  margin-top: 64px;
  padding: 32px 0 48px;
  text-align: center;
  border-top: 1px solid #eee;
}

footer p {
  font-size: 14px;
  color: #888;
  margin-bottom: 0;
}

/* Responsive design */
@media (max-width: 768px) {
  .top-nav {
    padding: 8px 16px;
  }
  
  .nav-left {
    gap: 8px;
  }
  
  .company-name {
    font-size: 14px;
  }
  
  .nav-favicon {
    width: 20px;
    height: 20px;
  }
  
  .nav-btn {
    padding: 6px;
  }
  
  .cookie-modal {
    width: 90%;
    max-width: 600px;
  }
  
  .share-panel {
    width: 90%;
    max-width: 400px;
  }
  
  main {
    padding: 0 24px 40px;
    max-width: 100%;
  }
  
  .banner {
    height: 140px;
  }
  
  .profile-container {
    padding-left: 24px; /* Match main responsive padding */
    margin: -60px auto 40px auto;
  }
  
  .profile-picture {
    height: 120px;
    width: 120px;
    border-radius: 12px;
  }
  
  h1 {
    font-size: 28px;
    margin-bottom: 20px;
  }
  
  h2 {
    font-size: 26px;
    margin: 40px 0 20px 0;
  }
  
  h3 {
    font-size: 18px;
    margin: 28px 0 12px 0;
  }
  
  .tagline {
    font-size: 16px;
    margin-bottom: 28px;
  }
  
  section {
    margin-bottom: 40px;
  }
  
  .intro {
    margin-bottom: 48px;
  }
  
  .social-links {
    text-align: center;
  }
}

@media (max-width: 480px) {
  .top-nav {
    padding: 6px 12px;
  }
  
  .nav-left {
    gap: 6px;
  }
  
  .company-name {
    font-size: 12px;
  }
  
  .nav-favicon {
    width: 18px;
    height: 18px;
  }
  
  .nav-btn {
    padding: 4px;
  }
  
  .nav-btn svg {
    width: 14px;
    height: 14px;
  }
  
  .cookie-modal {
    width: 100%;
    height: 100vh;
  }
  
  .share-panel {
    width: 100%;
    height: 100vh;
  }
  
  main {
    padding: 0 20px 32px;
  }
  
  .banner {
    height: 110px;
  }
  
  .profile-container {
    padding-left: 20px; /* Match main responsive padding */
    margin: -50px auto 30px auto;
  }
  
  .profile-picture {
    height: 100px;
    width: 100px;
    border-radius: 10px;
  }
  
  h1 {
    font-size: 25px;
    line-height: 1.1;
  }
  
  h2 {
    font-size: 22px;
    margin: 36px 0 16px 0;
  }
  
  h3 {
    font-size: 17px;
    margin: 24px 0 10px 0;
  }
  
  p {
    font-size: 15px;
    line-height: 1.5;
  }
  
  .tagline {
    font-size: 15px;
  }
  
  .social-links a {
    font-size: 14px;
  }
  
  .legal-disclaimer {
    font-size: 13px;
  }
  
  footer {
    padding: 40px 24px 40px;
  }
}

@media (max-width: 480px) {
  footer {
    padding: 40px 20px 40px;
  }
}

/* Footer */
footer {
  max-width: 680px;
  margin: 0 auto;
  padding: 40px 40px 60px;
  background-color: #ffffff;
}

footer p {
  text-align: left;
  color: #666;
  font-size: 14px;
  margin: 0;
}

/* Resources page styling */
.back-link-container {
  margin-bottom: 32px;
}

.back-link {
  color: #007AFF;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s ease;
}

.back-link:hover {
  color: #0056b3;
  text-decoration: underline;
}

.article-meta {
  margin: 24px 0 32px 0;
  border-left: 3px solid #007AFF;
  padding-left: 16px;
  background-color: #f8f9fa;
  padding: 16px;
  border-radius: 6px;
}

.article-meta p {
  margin: 4px 0;
  font-size: 14px;
  color: #666;
}

.content-section {
  margin-bottom: 48px;
}

/* Article hero image */
.article-hero-image {
  margin: 48px auto;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  max-width: 680px;
  width: 100%;
}

.article-hero-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  display: block;
}

/* Resources grid styling */
.resources-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 24px;
  margin-top: 48px;
}

.resource-card {
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  cursor: pointer;
  position: relative;
}

.resource-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.resource-card.coming-soon {
  cursor: default;
  opacity: 0.8;
}

.resource-card.coming-soon:hover {
  transform: none;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.resource-image {
  height: 200px;
  overflow: hidden;
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
  display: block;
  position: relative;
  width: 100%;
}

.resource-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.resource-placeholder-image {
  width: 80px;
  height: 80px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
}

.resource-placeholder-image.private-equity {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.resource-placeholder-image.due-diligence {
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.resource-placeholder-image.operations {
  background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.resource-placeholder-image.market-analysis {
  background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
}

.resource-placeholder-image.exit-strategies {
  background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
}

.resource-placeholder-image.legal-structures {
  background: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%);
}

.resource-content {
  padding: 24px;
  position: relative;
}

.resource-category {
  font-size: 12px;
  font-weight: 600;
  color: #666;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
}

.resource-card h3 {
  font-size: 20px;
  font-weight: 600;
  color: #333;
  margin: 0 0 12px 0;
  line-height: 1.3;
}

.resource-card p {
  color: #666;
  font-size: 15px;
  line-height: 1.5;
  margin: 0 0 20px 0;
}

.resource-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.author-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #917434;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 600;
}

.resource-author span {
  font-size: 12px;
  color: #666;
  font-weight: 500;
  letter-spacing: 0.5px;
}

.coming-soon-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: #f0f0f0;
  color: #666;
  padding: 4px 12px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 500;
}

/* Responsive design for resources grid */
@media (max-width: 768px) {
  .resources-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .resource-card {
    margin: 0 4px;
  }
  
  .resource-image {
    height: 160px;
  }
  
  .resource-placeholder-image {
    width: 60px;
    height: 60px;
  }
  
  .resource-content {
    padding: 20px;
  }
  
  .resource-card h3 {
    font-size: 18px;
  }
  
  .resource-card p {
    font-size: 14px;
  }
  
  .article-hero-image {
    margin: 32px auto;
    max-width: 100%;
  }
  
  .article-hero-image img {
    height: 250px;
  }
}

/* Email domain styling */
.email-link {
  color: #007AFF;
  text-decoration: none;
}

.email-link:hover {
  text-decoration: underline;
}
