﻿@charset "UTF-8";
.resume-page {
  background: #f5f5f5;
  padding: 2rem 0;
}

.resume {
  max-width: 850px;
  margin: 0 auto;
  background: #ffffff;
  padding: 3rem;
  box-shadow: 0 1px 10px rgba(0, 0, 0, 0.08);
  font-family: "Lato", "Segoe UI", sans-serif;
  font-size: 0.92rem;
  color: #333333;
  line-height: 1.6;
}

.resume__header {
  text-align: center;
  margin-bottom: 1.75rem;
  padding-bottom: 1.5rem;
  border-bottom: 2px solid #333333;
}

.resume__name {
  font-size: 2rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 0.25rem;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.resume__title {
  font-size: 1.05rem;
  font-weight: 300;
  color: #555555;
  margin-bottom: 0.75rem;
}

.resume__contact {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.5rem 1.5rem;
  font-size: 0.85rem;
  color: #555555;
}
.resume__contact a {
  color: #333333;
  text-decoration: none;
}
.resume__contact a:hover {
  text-decoration: underline;
}
.resume__contact span {
  white-space: nowrap;
}

.resume__section {
  margin-bottom: 1.5rem;
}

.resume__section-title {
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #1a1a1a;
  border-bottom: 1px solid #cccccc;
  padding-bottom: 0.3rem;
  margin-bottom: 1rem;
}

.resume__summary {
  font-size: 0.92rem;
  color: #444444;
  line-height: 1.7;
}

.resume__entry {
  margin-bottom: 1.25rem;
}

.resume__entry-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  flex-wrap: wrap;
  margin-bottom: 0.15rem;
}

.resume__entry-title {
  font-size: 1rem;
  font-weight: 600;
  color: #1a1a1a;
}

.resume__entry-date {
  font-size: 0.82rem;
  color: #777777;
  white-space: nowrap;
}

.resume__entry-company {
  font-size: 0.92rem;
  color: #555555;
  margin-bottom: 0.35rem;
}

.resume__entry-location {
  font-size: 0.82rem;
  color: #999999;
  font-style: italic;
}

.resume__entry-bullets {
  list-style: none;
  padding: 0;
  margin: 0.4rem 0 0 0;
}
.resume__entry-bullets li {
  position: relative;
  padding-left: 1rem;
  margin-bottom: 0.25rem;
  font-size: 0.88rem;
  color: #444444;
}
.resume__entry-bullets li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #999999;
}

.resume__skills-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem 1.5rem;
}
@media (max-width: 600px) {
  .resume__skills-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.resume__skill-group {
  margin-bottom: 0.4rem;
}
.resume__skill-group strong {
  font-size: 0.85rem;
  color: #1a1a1a;
}
.resume__skill-group span {
  font-size: 0.82rem;
  color: #555555;
}

.resume__project {
  margin-bottom: 0.75rem;
}
.resume__project strong {
  color: #1a1a1a;
}
.resume__project a {
  color: #333333;
  text-decoration: none;
  font-size: 0.82rem;
}
.resume__project p {
  font-size: 0.85rem;
  color: #555555;
  margin: 0.15rem 0 0 0;
}

.resume__education-entry {
  margin-bottom: 0.75rem;
}

.resume__publication {
  margin-bottom: 0.5rem;
  font-size: 0.85rem;
  color: #444444;
}
.resume__publication em {
  color: #666666;
}

@media print {
  .resume-page {
    background: #ffffff;
    padding: 0;
  }
  .resume {
    box-shadow: none;
    padding: 1.5rem;
    max-width: 100%;
  }
  .resume-actions {
    display: none !important;
  }
  .main-header,
  #footer,
  #preloader {
    display: none !important;
  }
  .body-container {
    padding: 0 !important;
    margin: 0 !important;
  }
  a {
    color: #333333 !important;
    text-decoration: none !important;
  }
}
.resume-actions {
  max-width: 850px;
  margin: 0 auto 1rem;
  display: flex;
  justify-content: flex-end;
  gap: 0.75rem;
}

.btn-resume-action {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 1rem;
  background: #333333;
  color: #ffffff;
  border: none;
  border-radius: 6px;
  font-size: 0.85rem;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.2s ease;
}
.btn-resume-action:hover {
  background: #555555;
  color: #ffffff;
}
