:root {
    --color-bg: #fbf7f4;
    --color-bg-soft: #f8f1ef;
    --color-surface: #fffdfb;
    --color-surface-soft: #f6ecef;
    --color-ink: #302b2d;
    --color-muted: #766b6e;
    --color-line: #eadde0;
    --color-accent: #b85d73;
    --color-accent-deep: #7a2f45;
    --color-sage: #6f8172;
    --shadow-soft: 0 10px 30px rgba(77, 45, 55, 0.08);
    --radius: 8px;
}

* {
    box-sizing: border-box;
}

html {
    min-width: 0;
    background: var(--color-bg);
}

body {
    margin: 0;
    min-width: 0;
    background: linear-gradient(180deg, var(--color-bg) 0%, var(--color-bg-soft) 100%);
    color: var(--color-ink);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", Arial, sans-serif;
    line-height: 1.5;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    display: block;
    max-width: 100%;
}

main {
    width: min(100% - 32px, 960px);
    margin: 0 auto;
    padding: 24px 0 40px;
}

.discover-page__header {
    padding: 4px 0 18px;
}

.discover-page__header h1,
.member-profile h1 {
    margin: 0;
    color: var(--color-accent-deep);
    font-size: 1.75rem;
    line-height: 1.2;
    letter-spacing: 0;
}

.discover-page__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
}

.discover-page__pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 20px;
    color: var(--color-muted);
}

.discover-page__pagination a {
    padding: 8px 12px;
    border: 1px solid var(--color-line);
    border-radius: var(--radius);
    background: var(--color-surface);
}

.discover-page__empty {
    margin: 32px 0;
    padding: 18px;
    border: 1px solid var(--color-line);
    border-radius: var(--radius);
    background: var(--color-surface);
    color: var(--color-muted);
    text-align: center;
}

.member-card {
    overflow: hidden;
    border: 1px solid var(--color-line);
    border-radius: var(--radius);
    background: rgba(255, 253, 251, 0.94);
    box-shadow: var(--shadow-soft);
}

.member-card__link {
    display: grid;
    grid-template-columns: 80px minmax(0, 1fr);
    gap: 14px;
    align-items: center;
    padding: 14px;
    min-width: 0;
}

.member-card__body {
    min-width: 0;
}

.member-card h2 {
    margin: 0 0 4px;
    color: var(--color-ink);
    font-size: 1.08rem;
    line-height: 1.3;
    letter-spacing: 0;
}

.member-card p {
    margin: 3px 0;
    color: var(--color-muted);
    font-size: 0.94rem;
    overflow-wrap: anywhere;
}

.member-card__tags {
    color: var(--color-sage);
}

.member-profile {
    width: min(100% - 32px, 720px);
}

.member-profile__hero {
    display: grid;
    grid-template-columns: 112px minmax(0, 1fr);
    gap: 18px;
    align-items: center;
    padding: 20px;
    border: 1px solid var(--color-line);
    border-radius: var(--radius);
    background: var(--color-surface);
    box-shadow: var(--shadow-soft);
}

.member-profile__summary {
    min-width: 0;
}

.member-profile__summary p {
    margin: 6px 0 0;
    color: var(--color-muted);
    overflow-wrap: anywhere;
}

.member-profile__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 14px;
}

.member-profile__actions form {
    margin: 0;
}

.member-profile__actions button,
.member-profile__login-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    padding: 9px 14px;
    border: 1px solid var(--color-accent);
    border-radius: var(--radius);
    background: var(--color-accent);
    color: #fffdfb;
    font: inherit;
    line-height: 1.2;
    cursor: pointer;
}

.member-profile__login-link {
    border-color: var(--color-line);
    background: var(--color-surface-soft);
    color: var(--color-accent-deep);
}

.member-profile__details {
    margin-top: 16px;
}

.member-profile__details dl {
    display: grid;
    gap: 10px;
    margin: 0;
}

.member-profile__details dl > div {
    display: grid;
    grid-template-columns: 92px minmax(0, 1fr);
    gap: 12px;
    padding: 12px 14px;
    border: 1px solid var(--color-line);
    border-radius: var(--radius);
    background: rgba(255, 253, 251, 0.86);
}

.member-profile__details dt {
    color: var(--color-muted);
}

.member-profile__details dd {
    margin: 0;
    color: var(--color-ink);
    overflow-wrap: anywhere;
}

.member-profile__albums {
    margin-top: 16px;
    padding: 16px;
    border: 1px solid var(--color-line);
    border-radius: var(--radius);
    background: rgba(255, 253, 251, 0.9);
    box-shadow: var(--shadow-soft);
}

.member-profile__albums-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 12px;
}

.member-profile__albums h2 {
    margin: 0;
    color: var(--color-accent-deep);
    font-size: 1.08rem;
    line-height: 1.3;
    letter-spacing: 0;
}

.member-profile__albums-empty {
    margin: 0;
    color: var(--color-muted);
    line-height: 1.6;
}

.member-profile__album-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(132px, 1fr));
    gap: 12px;
}

.member-profile__album-card {
    display: grid;
    gap: 8px;
    margin: 0;
    min-width: 0;
}

.member-profile__album-card img,
.member-profile__album-placeholder {
    width: 100%;
    aspect-ratio: 1 / 1;
    border: 1px solid var(--color-line);
    border-radius: var(--radius);
    background: var(--color-surface-soft);
    object-fit: cover;
    object-position: center;
}

.member-profile__album-card figcaption {
    color: var(--color-muted);
    font-size: 0.9rem;
    overflow-wrap: anywhere;
}

.avatar {
    display: block;
    inline-size: 80px;
    block-size: 80px;
    flex: 0 0 auto;
    overflow: hidden;
    border: 1px solid rgba(184, 93, 115, 0.2);
    border-radius: 50%;
    background: var(--color-surface-soft);
}

.avatar--approved {
    object-fit: cover;
    object-position: center;
}

.avatar--placeholder {
    position: relative;
    background: radial-gradient(circle at 50% 34%, #fffaf7 0 18%, #efd6dc 19% 35%, #e8c9d1 36% 100%);
}

.avatar--placeholder::after {
    content: "";
    position: absolute;
    inset: 58% 22% 16%;
    border-radius: 999px;
    background: rgba(122, 47, 69, 0.18);
}

.avatar--reviewing {
    background: linear-gradient(135deg, #fff8ef, #eedee2);
}

.avatar--rejected {
    background: linear-gradient(135deg, #f9eeee, #e8c7cf);
}

.avatar--hidden,
.avatar--missing {
    background: linear-gradient(135deg, #fbf4f1, #e9dfe1);
}

.member-profile__hero .avatar {
    inline-size: 112px;
    block-size: 112px;
}

.home-page {
    width: min(100% - 32px, 960px);
    margin: 0 auto;
    padding: 28px 0 44px;
}

.home-page__hero {
    padding: 30px 20px;
    border: 1px solid var(--color-line);
    border-radius: var(--radius);
    background:
        linear-gradient(135deg, rgba(255, 253, 251, 0.96), rgba(248, 241, 239, 0.92)),
        var(--color-surface);
    box-shadow: var(--shadow-soft);
}

.home-page__eyebrow {
    margin: 0 0 10px;
    color: var(--color-sage);
    font-size: 0.9rem;
    letter-spacing: 0;
}

.home-page__title {
    margin: 0;
    color: var(--color-accent-deep);
    font-size: 2rem;
    line-height: 1.18;
    letter-spacing: 0;
}

.home-page__slogan {
    max-width: 34rem;
    margin: 14px 0 0;
    color: var(--color-muted);
    font-size: 1.05rem;
    line-height: 1.7;
}

.home-page__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 22px;
}

.home-page__action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 10px 16px;
    border: 1px solid var(--color-line);
    border-radius: var(--radius);
    background: var(--color-surface);
    color: var(--color-accent-deep);
    font-weight: 600;
}

.home-page__action--primary {
    border-color: var(--color-accent);
    background: var(--color-accent-deep);
    color: #fffdfb;
}

.home-page__cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 16px;
}

.home-card {
    padding: 16px;
    border: 1px solid var(--color-line);
    border-radius: var(--radius);
    background: rgba(255, 253, 251, 0.9);
    box-shadow: var(--shadow-soft);
}

.home-card h2 {
    margin: 0 0 8px;
    color: var(--color-ink);
    font-size: 1rem;
    line-height: 1.35;
    letter-spacing: 0;
}

.home-card p {
    margin: 0;
    color: var(--color-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

.register-body {
    background:
        linear-gradient(180deg, rgba(251, 247, 244, 0.98) 0%, rgba(248, 241, 239, 0.98) 100%),
        var(--color-bg);
}

.register-page {
    width: min(100% - 32px, 680px);
    padding: 24px 0 44px;
}

.register-page__header {
    padding-top: 20px;
}

.register-page__header h1,
.register-form h2 {
    margin: 0 0 14px;
    color: var(--color-accent-deep);
    letter-spacing: 0;
}

.register-page__header h1 {
    font-size: 1.8rem;
    line-height: 1.2;
}

.register-form h2 {
    font-size: 1.18rem;
    line-height: 1.35;
}

.register-form {
    display: grid;
    gap: 14px;
    min-width: 0;
}

.register-form__section {
    display: grid;
    gap: 12px;
    padding: 18px;
    border: 1px solid var(--color-line);
    border-radius: var(--radius);
    background: rgba(255, 253, 251, 0.94);
    box-shadow: var(--shadow-soft);
}

.register-form__row {
    display: grid;
    gap: 12px;
}

.register-form__field,
.register-avatar-upload label {
    display: grid;
    gap: 7px;
    min-width: 0;
    color: var(--color-ink);
    font-size: 0.95rem;
    font-weight: 600;
}

.register-form input,
.register-form select {
    width: 100%;
    min-width: 0;
    min-height: 44px;
    padding: 10px 12px;
    border: 1px solid var(--color-line);
    border-radius: var(--radius);
    background: #fffdfb;
    color: var(--color-ink);
    font: inherit;
}

.register-form input:focus,
.register-form select:focus {
    border-color: rgba(184, 93, 115, 0.72);
    outline: 3px solid rgba(184, 93, 115, 0.15);
    outline-offset: 1px;
}

.register-form input[type="file"] {
    padding: 9px;
    background: rgba(248, 241, 239, 0.72);
    color: var(--color-muted);
}

.register-form__actions {
    display: grid;
    gap: 10px;
}

.register-form button[type="submit"] {
    width: 100%;
    min-height: 46px;
    border: 1px solid var(--color-accent-deep);
    border-radius: var(--radius);
    background: var(--color-accent-deep);
    color: #fffdfb;
    font: inherit;
    font-weight: 700;
    cursor: pointer;
}

.register-form button[type="submit"]:focus {
    outline: 3px solid rgba(184, 93, 115, 0.2);
    outline-offset: 2px;
}

.register-avatar-upload {
    display: grid;
    gap: 10px;
    min-width: 0;
    padding: 14px;
    border: 1px dashed rgba(184, 93, 115, 0.34);
    border-radius: var(--radius);
    background: rgba(246, 236, 239, 0.55);
}

.register-avatar-upload__status,
.register-avatar-upload__noscript {
    margin: 0;
    color: var(--color-muted);
    font-size: 0.92rem;
    line-height: 1.6;
    overflow-wrap: anywhere;
}

.register-errors {
    display: grid;
    gap: 6px;
    margin: 0 0 14px;
    padding: 12px 14px;
    border: 1px solid rgba(122, 47, 69, 0.22);
    border-radius: var(--radius);
    background: rgba(255, 244, 246, 0.94);
    color: var(--color-accent-deep);
}

.register-errors p {
    margin: 0;
    overflow-wrap: anywhere;
}

@media (min-width: 680px) {
    main {
        padding-top: 36px;
    }

    .discover-page__grid {
        grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
        gap: 16px;
    }

    .member-card__link {
        grid-template-columns: 88px minmax(0, 1fr);
    }

    .member-card .avatar {
        inline-size: 88px;
        block-size: 88px;
    }

    .home-page {
        padding-top: 42px;
    }

    .home-page__hero {
        padding: 42px;
    }

    .home-page__cards {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 14px;
    }
}

@media (max-width: 374px) {
    main,
    .member-profile,
    .home-page {
        width: min(100% - 24px, 960px);
    }

    .discover-page__header h1,
    .member-profile h1,
    .home-page__title {
        font-size: 1.5rem;
    }

    .home-page__hero {
        padding: 22px 16px;
    }

    .home-page__actions {
        display: grid;
        grid-template-columns: 1fr;
    }

    .member-card__link {
        grid-template-columns: 72px minmax(0, 1fr);
        gap: 12px;
        padding: 12px;
    }

    .member-card .avatar {
        inline-size: 72px;
        block-size: 72px;
    }

    .member-profile__hero {
        grid-template-columns: 88px minmax(0, 1fr);
        gap: 14px;
        padding: 16px;
    }

    .member-profile__hero .avatar {
        inline-size: 88px;
        block-size: 88px;
    }

    .member-profile__details dl > div {
        grid-template-columns: 1fr;
        gap: 4px;
    }

    .member-profile__album-grid {
        grid-template-columns: 1fr;
    }
}

/* Admin member detail */
.admin-shell .admin-member-detail {
    width: calc(100% - 32px);
    max-width: 960px;
    margin: 0 auto;
    padding: 24px 0 40px;
}

.admin-shell .admin-member-detail__header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 18px;
}

.admin-shell .admin-member-detail__header h1 {
    margin: 4px 0 0;
    font-size: 28px;
    line-height: 1.2;
}

.admin-shell .admin-member-detail__back {
    display: inline-flex;
    align-items: center;
    min-height: 36px;
}

.admin-shell .admin-member-detail__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.admin-shell .admin-member-card {
    border: 1px solid rgba(80, 43, 55, 0.12);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.78);
    padding: 18px;
}

.admin-shell .admin-member-card h2 {
    margin: 0 0 14px;
    font-size: 18px;
    line-height: 1.25;
}

.admin-shell .admin-member-fields {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px 18px;
}

.admin-shell .admin-member-field {
    min-width: 0;
}

.admin-shell .admin-member-field .label {
    display: block;
    margin-bottom: 4px;
    color: rgba(55, 43, 47, 0.62);
    font-size: 13px;
}

.admin-shell .admin-member-field strong {
    display: block;
    overflow-wrap: anywhere;
    color: #33272b;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.45;
}

.admin-shell .admin-member-detail__empty {
    margin: 0;
    color: rgba(55, 43, 47, 0.72);
    line-height: 1.6;
}

@media (max-width: 720px) {
    .admin-shell .admin-member-detail {
        width: calc(100% - 20px);
        padding-top: 16px;
    }

    .admin-shell .admin-member-detail__header {
        display: block;
    }

    .admin-shell .admin-member-detail__grid,
    .admin-shell .admin-member-fields {
        grid-template-columns: 1fr;
    }
}

/* Admin dashboard */
.admin-shell .admin-dashboard {
    width: calc(100% - 32px);
    max-width: 960px;
    margin: 0 auto;
    padding: 24px 0 40px;
}

.admin-shell .admin-dashboard__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    margin-top: 18px;
}

.admin-shell .admin-dashboard__quick-links,
.admin-shell .admin-dashboard__audit {
    margin-top: 18px;
}

.admin-shell .admin-dashboard__quick-links h2,
.admin-shell .admin-dashboard__audit h2 {
    margin: 0 0 12px;
    font-size: 18px;
    line-height: 1.25;
}

.admin-shell .admin-dashboard__quick-links div {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.admin-shell .admin-dashboard__quick-links a {
    display: inline-flex;
    align-items: center;
    min-height: 40px;
    padding: 0 12px;
    border: 1px solid rgba(80, 43, 55, 0.18);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.72);
}

.admin-shell .admin-dashboard__quick-links p {
    margin: 12px 0 0;
    color: rgba(55, 43, 47, 0.72);
    line-height: 1.6;
}

.admin-shell .admin-dashboard__audit {
    overflow-x: auto;
}

.admin-shell .admin-dashboard__audit table {
    min-width: 640px;
}

@media (max-width: 720px) {
    .admin-shell .admin-dashboard {
        width: calc(100% - 20px);
        padding-top: 16px;
    }

    .admin-shell .admin-dashboard__grid {
        grid-template-columns: 1fr;
    }
}

.account-albums {
    width: min(960px, calc(100% - 24px));
    margin: 0 auto;
    padding: 24px 0 56px;
}

.account-albums__header,
.account-albums__upload,
.account-albums__list {
    margin-bottom: 18px;
}

.account-albums__header h1,
.account-albums__upload h2,
.account-albums__list h2 {
    margin: 0 0 8px;
    line-height: 1.2;
}

.account-albums__header p,
.account-albums__empty,
.album-upload-form__help,
.album-upload-form__status {
    color: rgba(55, 43, 47, 0.72);
    line-height: 1.6;
}

.album-upload-form {
    display: grid;
    gap: 12px;
    max-width: 680px;
}

.album-upload-form__picker {
    display: grid;
    gap: 8px;
}

.album-upload-form input[type="file"] {
    width: 100%;
}

.album-upload-form button {
    min-height: 44px;
}

.album-upload-queue {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 12px;
}

.album-upload-queue__item {
    display: grid;
    grid-template-columns: 84px minmax(0, 1fr);
    gap: 10px;
    min-width: 0;
    padding: 10px;
    border: 1px solid rgba(80, 43, 55, 0.12);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.76);
}

.album-upload-queue__preview {
    width: 84px;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border: 1px solid rgba(80, 43, 55, 0.12);
    border-radius: 8px;
    background: rgba(80, 43, 55, 0.06);
}

.album-upload-queue__preview img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.album-upload-queue__meta {
    display: grid;
    align-content: start;
    gap: 6px;
    min-width: 0;
}

.album-upload-queue__title,
.album-upload-queue__state,
.album-upload-queue__error {
    overflow-wrap: anywhere;
}

.album-upload-queue__title {
    font-size: 14px;
    line-height: 1.3;
}

.album-upload-queue__state {
    width: max-content;
    max-width: 100%;
    padding: 3px 8px;
    border-radius: 999px;
    background: rgba(80, 43, 55, 0.08);
    color: rgba(55, 43, 47, 0.78);
    font-size: 12px;
    line-height: 1.4;
}

.album-upload-queue__item.is-uploading .album-upload-queue__state {
    background: rgba(143, 91, 43, 0.14);
    color: #70451f;
}

.album-upload-queue__item.is-success .album-upload-queue__state {
    background: rgba(48, 113, 82, 0.14);
    color: #276245;
}

.album-upload-queue__item.is-failed .album-upload-queue__state {
    background: rgba(156, 54, 72, 0.14);
    color: #8c2f43;
}

.album-upload-queue__progress {
    height: 6px;
    overflow: hidden;
    border-radius: 999px;
    background: rgba(80, 43, 55, 0.1);
}

.album-upload-queue__progress-bar {
    display: block;
    width: 0;
    height: 100%;
    border-radius: inherit;
    background: #8f5b2b;
    transition: width 160ms ease;
}

.album-upload-queue__item.is-success .album-upload-queue__progress-bar {
    background: #307152;
}

.album-upload-queue__item.is-failed .album-upload-queue__progress-bar {
    background: #9c3648;
}

.album-upload-queue__error {
    color: #8c2f43;
    font-size: 13px;
    line-height: 1.5;
}

.album-upload-queue__retry {
    width: max-content;
    min-height: 36px;
    padding: 0 14px;
}

.account-albums__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}

.account-albums__item {
    margin: 0;
    overflow: hidden;
    border: 1px solid rgba(80, 43, 55, 0.12);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.78);
}

.account-albums__item img,
.account-albums__placeholder {
    display: block;
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    object-position: center;
    background: linear-gradient(135deg, #f4ece8, #eadcdf);
}

.account-albums__meta {
    display: grid;
    gap: 4px;
    padding: 10px;
    font-size: 13px;
    line-height: 1.4;
}

.account-albums__meta span {
    overflow-wrap: anywhere;
    color: rgba(55, 43, 47, 0.72);
}

.account-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 18px;
}

.account-nav__link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 40px;
    padding: 0 14px;
    border: 1px solid rgba(80, 43, 55, 0.16);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.72);
    color: #442b34;
    font-weight: 700;
    text-decoration: none;
}

.account-nav__link--active {
    border-color: rgba(143, 91, 43, 0.42);
    background: rgba(143, 91, 43, 0.1);
}

.account-nav__badge {
    min-width: 22px;
    padding: 2px 7px;
    border-radius: 999px;
    background: #8c2f43;
    color: #fff;
    font-size: 12px;
    line-height: 1.4;
    text-align: center;
}

.account-notifications {
    width: min(960px, calc(100% - 24px));
    margin: 0 auto;
    padding: 24px 0 48px;
}

.account-notifications__header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 18px;
}

.account-notifications__header h1 {
    margin: 0 0 8px;
    line-height: 1.2;
}

.account-notifications__header p,
.account-notifications__empty,
.account-notification__meta {
    color: rgba(55, 43, 47, 0.72);
}

.account-notifications__header form,
.account-notification__actions form {
    margin: 0;
}

.account-notifications__list {
    display: grid;
    gap: 12px;
}

.account-notification {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 12px;
    padding: 14px;
    border: 1px solid rgba(80, 43, 55, 0.12);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.78);
}

.account-notification--unread {
    border-color: rgba(143, 91, 43, 0.36);
    background: rgba(255, 250, 242, 0.92);
}

.account-notification__body {
    min-width: 0;
}

.account-notification__body h2 {
    margin: 0 0 8px;
    font-size: 18px;
    line-height: 1.3;
}

.account-notification__body p {
    margin: 0 0 10px;
    overflow-wrap: anywhere;
    line-height: 1.6;
}

.account-notification__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    font-size: 13px;
}

.account-notification__actions {
    display: flex;
    flex-wrap: wrap;
    align-content: flex-start;
    justify-content: flex-end;
    gap: 8px;
}

.account-notification__actions a,
.account-notifications__pagination a {
    color: #7a3e4b;
    font-weight: 700;
}

.account-notifications__pagination {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 18px;
}

@media (max-width: 720px) {
    .album-upload-queue {
        grid-template-columns: 1fr;
    }

    .account-albums__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .account-notifications__header,
    .account-notification {
        display: block;
    }

    .account-notification__actions {
        justify-content: flex-start;
        margin-top: 12px;
    }
}
