/* Page Template Styles */

.page-container {
  padding-top: 2rem;
  padding-bottom: 3rem;
}

.page-content-wrapper {
  background: #fff;
  border-radius: 8px;
  padding: 2rem;
}

.page-content {
  max-width: 100%;
}

.page-featured-image {
  margin: 0 0 2rem 0;
  border-radius: 8px;
  overflow: hidden;
}

.page-featured-image img {
  width: 100%;
  height: auto;
  display: block;
}

.page-content-inner {
  font-size: 1.0625rem;
  line-height: 1.8;
  color: #333;
}

.page-content-inner h2,
.page-content-inner h3,
.page-content-inner h4 {
  color: var(--heading, #010d4c);
  margin-top: 2rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.page-content-inner h2 {
  font-size: 2rem;
  line-height: 1.3;
}

.page-content-inner h3 {
  font-size: 1.5rem;
  line-height: 1.4;
}

.page-content-inner p {
  margin-bottom: 1.5rem;
}

.page-content-inner ul,
.page-content-inner ol {
  margin-bottom: 1.5rem;
  padding-left: 2rem;
}

.page-content-inner li {
  margin-bottom: 0.5rem;
}

.page-content-inner a {
  color: var(--prime-one, #0066FF);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s ease;
}

.page-content-inner a:hover {
  border-bottom-color: var(--prime-one, #0066FF);
}

.page-links {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid #e5e5e5;
  font-weight: 500;
}

/* About Me Page Specific Styles */

.about-me-container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 3rem 1rem;
}

.about-me-content {
  width: 100%;
}

.about-me-article {
  background: #fff;
  border-radius: 12px;
  padding: 2.5rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.about-me__featured-image {
  margin: 0 0 3rem 0;
  text-align: center;
}

.about-me__image {
  max-width: 400px;
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.about-me__content {
  font-size: 1.125rem;
  line-height: 1.8;
  color: #333;
  margin-bottom: 3rem;
}

.about-me__content h2 {
  font-size: 2.25rem;
  color: var(--heading, #010d4c);
  margin-bottom: 1.5rem;
  font-weight: 700;
}

.about-me__content h3 {
  font-size: 1.75rem;
  color: var(--heading, #010d4c);
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.about-me__content p {
  margin-bottom: 1.5rem;
}

.about-me__content p:first-of-type {
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--prime-one, #0066FF);
}

/* Skills Section */
.about-me__skills {
  background: #f8f9fa;
  border-radius: 8px;
  padding: 2rem;
  margin-bottom: 2rem;
}

.about-me__skills h2 {
  font-size: 1.75rem;
  color: var(--heading, #010d4c);
  margin-bottom: 1.5rem;
  font-weight: 600;
}

.skills-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 1rem;
}

.skills-list ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.skills-list li {
  padding: 0.5rem 0;
  border-bottom: 1px solid #e5e5e5;
}

.skills-list li:last-child {
  border-bottom: none;
}

/* Experience Section */
.about-me__experience {
  background: #fff;
  border: 1px solid #e5e5e5;
  border-radius: 8px;
  padding: 2rem;
  margin-bottom: 2rem;
}

.about-me__experience h2 {
  font-size: 1.75rem;
  color: var(--heading, #010d4c);
  margin-bottom: 1.5rem;
  font-weight: 600;
}

.experience-content h3 {
  font-size: 1.25rem;
  color: var(--heading, #010d4c);
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.experience-content p {
  margin-bottom: 1rem;
  color: #555;
}

/* Responsive Design */

@media (max-width: 768px) {
  .about-me-container {
    padding: 2rem 1rem;
  }

  .about-me-article {
    padding: 1.5rem;
  }

  .about-me__content {
    font-size: 1rem;
  }

  .about-me__content h2 {
    font-size: 1.75rem;
  }

  .about-me__content h3 {
    font-size: 1.5rem;
  }

  .about-me__image {
    max-width: 300px;
  }

  .skills-list {
    grid-template-columns: 1fr;
  }

  .page-content-wrapper {
    padding: 1.5rem;
  }
}

@media (max-width: 480px) {
  .about-me__content h2 {
    font-size: 1.5rem;
  }

  .about-me__skills,
  .about-me__experience {
    padding: 1.5rem;
  }
}

