/* Basic CSS Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Typography & Colors */
body {
    font-family: "Inter", "Helvetica Neue", Helvetica, Arial, sans-serif;
    line-height: 1.7;
    color: #2d3436;
    background-color: #fffaf0;
    max-width: 850px;
    margin: 0 auto;
    padding: 40px 20px;
}

/* Layout */
header,
footer {
    padding: 20px 0;
    border-bottom: 1px solid #dfe6e9;
}

header nav ul,
main ul {
    list-style: none;
    display: flex;
    gap: 20px;
}

footer {
    border-top: 1px solid #dfe6e9;
    border-bottom: none;
    margin-top: 40px;
    font-size: 0.9rem;
    color: #636e72;
}

main {
    padding: 20px 0;
}

/* Links */
a {
    color: #0984e3;
    text-decoration: none;
    position: relative;
    display: inline-block;
    transition: transform 0.2s ease;
}

a:hover {
    transform: translateY(-2px);
}

a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 100%;
    height: 2px;
    background-color: #fdcb6e;
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

a:hover::after {
    transform: scaleX(1);
}

/* Headings */
h1,
h2,
h3 {
    color: #ff7675;
    margin-top: 2rem;
    margin-bottom: 1rem;
    line-height: 1.2;
    font-family: "Inter", "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.header-line-1 {
    display: block;
    font-size: 2.5rem;
}

.header-line-2 {
    display: block;
    font-size: 1.5rem;
    margin-top: -0.5rem;
    margin-bottom: 2rem;
    color: #636e72;
    animation: fadeIn 1.5s ease-in;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

p {
    margin-bottom: 1.5rem;
}

ul {
    margin-bottom: 1rem;
}

/* Blog Index Layout */
.blog-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    list-style: none;
}

.blog-item {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding-bottom: 10px;
    border-bottom: 1px solid #dfe6e9;
}

.blog-title {
    font-size: 1.2rem;
    font-weight: 600;
}

.blog-date {
    font-size: 0.9rem;
    color: #636e72;
    white-space: nowrap;
    margin-left: 20px;
}